From 828c4ab06c89c2e1e615ebf0b49d0fd286f8b49c Mon Sep 17 00:00:00 2001 From: Ezequiel Garcia Date: Tue, 7 Jun 2016 10:58:01 -0300 Subject: [PATCH] configs/beaglebone: Add missing genimage.cfg file Commit 7d0b7d3c27a6 ("configs/beaglebone: Use genimage to produce the SD card image") introduce genimage usage, but forgot to add the genimage config file. Fix it. Signed-off-by: Ezequiel Garcia Signed-off-by: Thomas Petazzoni --- board/beaglebone/genimage.cfg | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 board/beaglebone/genimage.cfg diff --git a/board/beaglebone/genimage.cfg b/board/beaglebone/genimage.cfg new file mode 100644 index 0000000000..0c29a804d5 --- /dev/null +++ b/board/beaglebone/genimage.cfg @@ -0,0 +1,30 @@ +image boot.vfat { + vfat { + files = { + "MLO", + "u-boot.img", + "zImage", + "uEnv.txt", + "am335x-bone.dtb", + "am335x-boneblack.dtb" + } + } + size = 16M +} + +image sdcard.img { + hdimage { + } + + partition u-boot { + partition-type = 0xC + bootable = "true" + image = "boot.vfat" + } + + partition rootfs { + partition-type = 0x83 + image = "rootfs.ext4" + size = 512M + } +} -- 2.30.2