Add new Skeleton.
This commit is contained in:
14
projects/pi_domo/Makefile
Normal file
14
projects/pi_domo/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# Entry point for the project.
|
||||
|
||||
# Define the target.
|
||||
export AW_PROJECT:=$(shell pwd)
|
||||
export AW_PROJECT_NAME:=pi_domo
|
||||
|
||||
export AW_BOARD:=$(shell pwd)/../../bsp/board/raspberrypi/
|
||||
|
||||
include $(AW_BOARD)/main.mk
|
||||
|
||||
install:
|
||||
cp $(AW_STAGING)/buildroot/images/zImage /tftpboot/
|
||||
cp $(AW_STAGING)/buildroot/images/rootfs.cpio.uboot /tftpboot/
|
||||
2337
projects/pi_domo/configs/buildroot.config
Normal file
2337
projects/pi_domo/configs/buildroot.config
Normal file
File diff suppressed because it is too large
Load Diff
23
projects/pi_domo/configs/config.txt
Normal file
23
projects/pi_domo/configs/config.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
# Please note that this is only a sample, we recommend you to change it to fit
|
||||
# your needs.
|
||||
# You should override this file using a post-build script.
|
||||
# See http://buildroot.org/manual.html#rootfs-custom
|
||||
# and http://elinux.org/RPiconfig for a description of config.txt syntax
|
||||
|
||||
kernel=u-boot.bin
|
||||
|
||||
# To use an external initramfs file
|
||||
#initramfs rootfs.cpio.gz
|
||||
|
||||
# Disable overscan assuming the display supports displaying the full resolution
|
||||
# If the text shown on the screen disappears off the edge, comment this out
|
||||
disable_overscan=1
|
||||
|
||||
# How much memory in MB to assign to the GPU on Pi models having
|
||||
# 256, 512 or 1024 MB total memory
|
||||
gpu_mem_256=100
|
||||
gpu_mem_512=100
|
||||
gpu_mem_1024=100
|
||||
|
||||
# Enable audio (loads snd_bcm2835)
|
||||
dtparam=audio=on
|
||||
47
projects/pi_domo/configs/genimage.config
Normal file
47
projects/pi_domo/configs/genimage.config
Normal file
@@ -0,0 +1,47 @@
|
||||
image boot.vfat {
|
||||
vfat {
|
||||
files = {
|
||||
"bcm2708-rpi-b-plus.dtb",
|
||||
"bcm2708-rpi-b.dtb",
|
||||
"bcm2708-rpi-cm.dtb",
|
||||
"boot.scr",
|
||||
"rpi-firmware/bootcode.bin",
|
||||
"config.txt",
|
||||
"dev.scr",
|
||||
"rpi-firmware/fixup.dat",
|
||||
"pi_QuartetIII.dtb",
|
||||
"rootfs.cpio.uboot",
|
||||
"rpi-firmware/start.elf",
|
||||
"u-boot.bin",
|
||||
"uboot.env",
|
||||
"update.scr",
|
||||
"zImage"
|
||||
}
|
||||
}
|
||||
size = 30M
|
||||
}
|
||||
|
||||
image data.vfat {
|
||||
vfat {
|
||||
files = {
|
||||
"rpi-firmware/config.txt"
|
||||
}
|
||||
}
|
||||
size = 10M
|
||||
}
|
||||
|
||||
image sdcard.img {
|
||||
hdimage {
|
||||
}
|
||||
|
||||
partition boot {
|
||||
partition-type = 0xC
|
||||
bootable = "true"
|
||||
image = "boot.vfat"
|
||||
}
|
||||
|
||||
partition data {
|
||||
partition-type = 0xC
|
||||
image = "data.vfat"
|
||||
}
|
||||
}
|
||||
4533
projects/pi_domo/configs/linuxKernel.config
Normal file
4533
projects/pi_domo/configs/linuxKernel.config
Normal file
File diff suppressed because it is too large
Load Diff
2311
projects/pi_domo/configs/toolchain.config
Normal file
2311
projects/pi_domo/configs/toolchain.config
Normal file
File diff suppressed because it is too large
Load Diff
14
projects/qemu_x86_64_domo/Makefile
Normal file
14
projects/qemu_x86_64_domo/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# Entry point for the project.
|
||||
|
||||
# Define the target.
|
||||
export AW_PROJECT:=$(shell pwd)
|
||||
export AW_PROJECT_NAME:=pi_QuartetIII
|
||||
|
||||
export AW_BOARD:=$(shell pwd)/../../board/mozart3/
|
||||
|
||||
include $(AW_BOARD)/main.mk
|
||||
|
||||
install:
|
||||
cp $(AW_STAGING)/buildroot/images/zImage /tftpboot/
|
||||
cp $(AW_STAGING)/buildroot/images/rootfs.cpio.uboot /tftpboot/
|
||||
10
projects/x86_64_domo/Makefile
Normal file
10
projects/x86_64_domo/Makefile
Normal file
@@ -0,0 +1,10 @@
|
||||
#
|
||||
# Entry point for the project.
|
||||
|
||||
# Define the target.
|
||||
export AW_PROJECT:=$(shell pwd)
|
||||
export AW_PROJECT_NAME:=x86_64_QuartetIII
|
||||
|
||||
export AW_BOARD:=$(shell pwd)/../../board/mozart3/
|
||||
|
||||
include $(AW_BOARD)/main.mk
|
||||
2483
projects/x86_64_domo/configs/buildroot.config
Normal file
2483
projects/x86_64_domo/configs/buildroot.config
Normal file
File diff suppressed because it is too large
Load Diff
2450
projects/x86_64_domo/configs/toolchain.config
Normal file
2450
projects/x86_64_domo/configs/toolchain.config
Normal file
File diff suppressed because it is too large
Load Diff
0
projects/x86_64_domo/ovl/.gitkeep
Normal file
0
projects/x86_64_domo/ovl/.gitkeep
Normal file
Reference in New Issue
Block a user