summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/platforms/barebox_mlo.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2016-07-26 22:16:06 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2016-07-26 22:16:06 +0200
commit49292bd74f73a260927b7f3f42548e4ee4407237 (patch)
tree3e89c3b02b9d8d9e1114f8f860afb9a1109cc373 /configs/platform-v7a/platforms/barebox_mlo.in
parentdd2c39349c6e0358cb5dc463cd02e63b0902bcf2 (diff)
downloadDistroKit-49292bd74f73a260927b7f3f42548e4ee4407237.tar.gz
DistroKit-49292bd74f73a260927b7f3f42548e4ee4407237.tar.xz
platform-beaglebone: rename to platform-v7a
In the meantime, in addition to beaglebone, this platform supports the other ARMv7 based boards (rpi2, vexpress), so rename it. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'configs/platform-v7a/platforms/barebox_mlo.in')
-rw-r--r--configs/platform-v7a/platforms/barebox_mlo.in45
1 files changed, 45 insertions, 0 deletions
diff --git a/configs/platform-v7a/platforms/barebox_mlo.in b/configs/platform-v7a/platforms/barebox_mlo.in
new file mode 100644
index 0000000..184aa52
--- /dev/null
+++ b/configs/platform-v7a/platforms/barebox_mlo.in
@@ -0,0 +1,45 @@
+## SECTION=bootloader
+
+menuconfig BAREBOX_MLO
+ prompt "barebox mlo "
+ select HOST_LZOP if BAREBOX_MLO_NEEDS_HOST_LZOP
+ bool
+ help
+ Build mlo from barebox sources.
+
+if BAREBOX_MLO
+
+config BAREBOX_MLO_VERSION
+ prompt "barebox version" if !BAREBOX
+ string
+ default "${PTXCONF_BAREBOX_VERSION}" if BAREBOX
+ default "2014.01.0" if !BAREBOX
+
+config BAREBOX_MLO_MD5
+ prompt "barebox source md5sum" if !BAREBOX
+ string
+ default "${PTXCONF_BAREBOX_MD5}" if BAREBOX
+
+config BAREBOX_MLO_ARCH_STRING
+ string
+ default "arm" if ARCH_ARM
+ default "blackfin" if ARCH_BLACKFIN
+ default "ppc" if ARCH_PPC
+ default "x86" if ARCH_X86
+
+config BAREBOX_MLO_CONFIG
+ prompt "mlo config file"
+ string
+ default "barebox_mlo.config"
+ help
+ This entry specifies the .config file used to compile mlo.
+
+config BAREBOX_MLO_NEEDS_HOST_LZOP
+ prompt "barebox mlo needs lzop"
+ bool
+ help
+ The barebox mlo dtb's can be compressed. Select this if
+ lzop is used in order to compile lzop for your development
+ host.
+
+endif