summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-09-17 19:41:25 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-10-02 11:12:48 +0200
commit067f4cf79fab8848c0dd3e125e71e9c89a1d14d9 (patch)
tree7f39da65ec8bb70d37cad8c73c3de1e70213f5a9 /scripts
parent5e83700a7ac021e64c2f90a0ffee3b173d6c12b9 (diff)
downloadbarebox-067f4cf79fab8848c0dd3e125e71e9c89a1d14d9.tar.gz
barebox-067f4cf79fab8848c0dd3e125e71e9c89a1d14d9.tar.xz
common: add new menu for target tools
We have four target tools and will add 3 more in a follow up commit. Add a new menu to collect them. Acked-by: Roland Hieber <rhi@pengutronix.de> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20210917174127.23345-2-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Kconfig30
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/Kconfig b/scripts/Kconfig
index b903486ecd..f7ed775fbc 100644
--- a/scripts/Kconfig
+++ b/scripts/Kconfig
@@ -40,3 +40,33 @@ config OMAP4_HOSTTOOL_USBBOOT
You need libusb-1.0 to compile this tool.
endmenu
+
+menu "Target Tools"
+
+config IMD_TARGET
+ bool "build bareboximd target tool"
+ depends on IMD
+
+config KERNEL_INSTALL_TARGET
+ bool
+ prompt "Build kernel-install utility for the target"
+ help
+ Enable this to compile the kernel-install script using the cross
+ compiler. The utility for the target will be under
+ scripts/kernel-install-target
+
+config BAREBOXENV_TARGET
+ bool
+ prompt "build bareboxenv tool for target"
+ help
+ 'bareboxenv' is a tool to access the barebox environment from a running Linux
+ system. Say yes here to build it for the target.
+
+config BAREBOXCRC32_TARGET
+ bool
+ prompt "build bareboxcrc32 tool for target"
+ help
+ 'bareboxcrc32' is a userspacetool to generate the crc32 checksums the same way
+ barebox does. Say yes here to build it for the target.
+
+endmenu