From 0fcd1548596a5d9358bfeb96bc7863f6fa17e15d Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Mon, 12 Jan 2026 11:05:11 -0600 Subject: [PATCH] bootm: Remove BOOTM_NETBSD from defaults After talking with someone from the NetBSD project, platforms that do not boot with a device tree (and so would be using our BOOTM_NETBSD support) a very few in number. So we can remove this option from being enabled by default and save a little space in most places with platforms that need it still being able to re-enable it, if needed. Ideally, in a few years we can instead just remove the code entirely. Link: https://lore.kernel.org/r/aWKQOW_ajq0DsbYA@big-apple.aprisoft.de/ Signed-off-by: Tom Rini --- cmd/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index 13da4f313f1..cc4dd5a3163 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -399,11 +399,11 @@ config BOOTM_LINUX or booti or bootz. config BOOTM_NETBSD - bool "Support booting NetBSD (non-EFI) loader images" + bool "Support booting NetBSD (legacy, non-EFI) loader images" depends on CMD_BOOTM - default y help - Support booting NetBSD via the bootm command. + Support booting NetBSD via the bootm command. This is for NetBSD + images that are neither EFI nor using a device tree. config BOOTM_OPENRTOS bool "Support booting OPENRTOS / FreeRTOS images"