summaryrefslogtreecommitdiff
path: root/target/arm
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-15 22:06:26 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-09-15 22:07:15 +0200
commit3ebb585eef3eb378e5307ec6efa34f58943c353c (patch)
treec971c104ca538796b3b7e15fbe7aba7c9bdd4ddb /target/arm
parent2997a3ae269aa4ee72c71a05e5d79ad67aee44e9 (diff)
beaglebone-black: add special linux-repo, add uEnv.txt
Diffstat (limited to 'target/arm')
-rw-r--r--target/arm/beaglebone-black/genimage.cfg27
1 files changed, 27 insertions, 0 deletions
diff --git a/target/arm/beaglebone-black/genimage.cfg b/target/arm/beaglebone-black/genimage.cfg
new file mode 100644
index 000000000..b09ee55a1
--- /dev/null
+++ b/target/arm/beaglebone-black/genimage.cfg
@@ -0,0 +1,27 @@
+image boot.vfat {
+ vfat {
+ files = {
+ "MLO",
+ "u-boot.img",
+ "uEnv.txt",
+ }
+ }
+ size = 16M
+}
+
+image disk.img {
+ hdimage {
+ }
+
+ partition u-boot {
+ partition-type = 0xC
+ bootable = "true"
+ image = "boot.vfat"
+ }
+
+ partition rootfs {
+ partition-type = 0x83
+ image = "rootfs.ext"
+ size = 512M
+ }
+}