diff options
author | 2020-11-24 13:19:34 +0200 | |
---|---|---|
committer | 2021-01-02 23:53:55 +0100 | |
commit | 3fcb2a289fc1c46386f41044c4f0240beb7b3df9 (patch) | |
tree | d9a0b09bb52b2b388841f2ae1933d9ddef1b0c11 /board/microchip | |
parent | 3dc427eb1daadcdcb04a5a8efdefc4315da65818 (diff) | |
download | buildroot-3fcb2a289fc1c46386f41044c4f0240beb7b3df9.tar.gz buildroot-3fcb2a289fc1c46386f41044c4f0240beb7b3df9.tar.bz2 |
configs/microchip_sam9x60ek: new defconfigs
Add the new SAM9X60 Evaluation Kit with linux4sam_2020.04
components. Update README file with new defconfigs.
Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'board/microchip')
-rw-r--r-- | board/microchip/sam9x60ek_mmc/genimage.cfg | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/board/microchip/sam9x60ek_mmc/genimage.cfg b/board/microchip/sam9x60ek_mmc/genimage.cfg new file mode 100644 index 0000000000..c41581091e --- /dev/null +++ b/board/microchip/sam9x60ek_mmc/genimage.cfg @@ -0,0 +1,31 @@ +# Image for SD card boot on Microchip SAM9X60-EK +# +image boot.vfat { + vfat { + files = { + "zImage", + "at91-sam9x60ek.dtb", + "boot.bin", + "u-boot.bin" + } + } + size = 16M +} + +image sdcard.img { + hdimage { + } + + partition boot { + partition-type = 0xC + bootable = "true" + image = "boot.vfat" + offset = 1M + } + + partition rootfs { + partition-type = 0x83 + image = "rootfs.ext4" + size = 512M + } +} |