summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2014-08-08 19:52:37 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2014-08-13 11:19:48 +0200
commit521624ec0b01a8ddef0007a30fc089a9a0400f4d (patch)
tree2a1f5ecf8f6878d44220adb47410faf076a7add6 /config
parentb17a7f335bc56617277fbb0745879cf862e1db74 (diff)
downloadptxdist-521624ec0b01a8ddef0007a30fc089a9a0400f4d.tar.gz
ptxdist-521624ec0b01a8ddef0007a30fc089a9a0400f4d.tar.xz
add rules for image.vfat
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'config')
-rw-r--r--config/images/boot-vfat-efi-barebox.config7
-rw-r--r--config/images/boot-vfat-mlo-barebox.config8
-rw-r--r--config/images/boot-vfat-mlo-u-boot.config9
3 files changed, 24 insertions, 0 deletions
diff --git a/config/images/boot-vfat-efi-barebox.config b/config/images/boot-vfat-efi-barebox.config
new file mode 100644
index 000000000..6579da527
--- /dev/null
+++ b/config/images/boot-vfat-efi-barebox.config
@@ -0,0 +1,7 @@
+image @IMAGE@ {
+ vfat {
+ file EFI/BOOT/@EFI_IMAGE@ { image = "barebox-image" }
+ }
+ name = boot-vfat
+ size = 7M
+}
diff --git a/config/images/boot-vfat-mlo-barebox.config b/config/images/boot-vfat-mlo-barebox.config
new file mode 100644
index 000000000..cec313e42
--- /dev/null
+++ b/config/images/boot-vfat-mlo-barebox.config
@@ -0,0 +1,8 @@
+image @IMAGE@ {
+ vfat {
+ file MLO { image = "MLO"}
+ file barebox.bin { image = "barebox-image" }
+ }
+ name = boot-vfat
+ size = 10M
+}
diff --git a/config/images/boot-vfat-mlo-u-boot.config b/config/images/boot-vfat-mlo-u-boot.config
new file mode 100644
index 000000000..ca7c47fd3
--- /dev/null
+++ b/config/images/boot-vfat-mlo-u-boot.config
@@ -0,0 +1,9 @@
+image @IMAGE@ {
+ vfat {
+ file MLO { image = "MLO"}
+ file u-boot.img { image = "u-boot.img" }
+ file uImage { image = "linuximage" }
+ }
+ name = boot-vfat
+ size = 10M
+}