summaryrefslogtreecommitdiff
path: root/board/grinn/chiliboard/genimage.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'board/grinn/chiliboard/genimage.cfg')
-rw-r--r--board/grinn/chiliboard/genimage.cfg31
1 files changed, 31 insertions, 0 deletions
diff --git a/board/grinn/chiliboard/genimage.cfg b/board/grinn/chiliboard/genimage.cfg
new file mode 100644
index 000000000..ffe027e7a
--- /dev/null
+++ b/board/grinn/chiliboard/genimage.cfg
@@ -0,0 +1,31 @@
+# Minimal microSD card image for Grinn's chiliBoard
+#
+
+image boot.vfat {
+ vfat {
+ files = {
+ "MLO",
+ "u-boot.img",
+ "am335x-chiliboard.dtb",
+ "zImage"
+ }
+ }
+ size = 16M
+}
+
+image sdcard.img {
+ hdimage {
+ }
+
+ partition u-boot {
+ partition-type = 0xC
+ bootable = "true"
+ image = "boot.vfat"
+ offset = 1M
+ }
+
+ partition rootfs {
+ partition-type = 0x83
+ image = "rootfs.ext4"
+ }
+}