summaryrefslogtreecommitdiffstats
path: root/config/images
diff options
context:
space:
mode:
Diffstat (limited to 'config/images')
-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
+}