summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2019-06-05 20:52:05 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2019-06-05 20:57:13 +0200
commitcda3068319d9075df6e460dfd05d58c5fb6a4638 (patch)
tree5696cfe46ec776eca08ecccebf13c323b7fb119b /configs/platform-v7a
parentd41982bf6acd88e06d38ba400ae92953c626ef02 (diff)
downloadDistroKit-cda3068319d9075df6e460dfd05d58c5fb6a4638.tar.gz
DistroKit-cda3068319d9075df6e460dfd05d58c5fb6a4638.tar.xz
v7a: remove unused barebox_mlo menu entry
There is no corresponding make file, and the package is not selected. Signed-off-by: Roland Hieber <rhi@pengutronix.de>
Diffstat (limited to 'configs/platform-v7a')
-rw-r--r--configs/platform-v7a/platforms/barebox_mlo.in45
1 files changed, 0 insertions, 45 deletions
diff --git a/configs/platform-v7a/platforms/barebox_mlo.in b/configs/platform-v7a/platforms/barebox_mlo.in
deleted file mode 100644
index 184aa52..0000000
--- a/configs/platform-v7a/platforms/barebox_mlo.in
+++ /dev/null
@@ -1,45 +0,0 @@
-## 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