Add new Skeleton.

This commit is contained in:
2016-11-16 22:04:31 +01:00
parent 05de7d6c04
commit 317c040ea8
46 changed files with 16694 additions and 0 deletions

14
projects/pi_domo/Makefile Normal file
View 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/

File diff suppressed because it is too large Load Diff

View 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

View 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"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View 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/

View 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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File