summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/config
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2020-11-01 09:52:21 +0100
committerRobert Schwebel <r.schwebel@pengutronix.de>2020-11-01 09:53:15 +0100
commit67e271537746edd86aa4143a435896315c7a88a3 (patch)
tree318652ffefc344bc526ca4c141baaff7c69683d0 /configs/platform-v7a/config
parentd821369c3c109eb2c12eb1732f71657a8fa81aa7 (diff)
downloadDistroKit-67e271537746edd86aa4143a435896315c7a88a3.tar.gz
DistroKit-67e271537746edd86aa4143a435896315c7a88a3.tar.xz
v7a: generate image for sama5d27 SOM1 Evaluation Kit
With the previous barebox and kernel changes, we can combine it with the DistroKit-v7a rootfs to get an image to boot on the sama5d27-som1-ek. Do this. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> [rebased to master] Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'configs/platform-v7a/config')
-rw-r--r--configs/platform-v7a/config/images/at91-sd.config30
1 files changed, 30 insertions, 0 deletions
diff --git a/configs/platform-v7a/config/images/at91-sd.config b/configs/platform-v7a/config/images/at91-sd.config
new file mode 100644
index 0000000..6108a20
--- /dev/null
+++ b/configs/platform-v7a/config/images/at91-sd.config
@@ -0,0 +1,30 @@
+image @IMAGE@-boot.vfat {
+ vfat {
+ file BOOT.BIN { image = @FSBL@ }
+ file barebox.bin { image = @SSBL@ }
+ }
+ size = 3M
+}
+
+image @IMAGE@ {
+ hdimage {
+ align = 1M
+ disk-signature = 0x67823abf
+ }
+ partition boot {
+ image = @IMAGE@-boot.vfat
+ size = 3M
+ partition-type = 0xc
+ bootable = true
+ }
+ partition root-A {
+ image = root.ext2
+ partition-type = 0x83
+ size = 512M
+ }
+ partition data {
+ partition-type = 0x83
+ size = 512M
+ }
+}
+/* vim: set tabstop=8 noexpandtab : */