[U-Boot] [PATCH] Blackfin: disable NetBSD by default since no port exists

Signed-off-by: Mike Frysinger vapier@gentoo.org --- common/cmd_bootm.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 9055672..c814c68 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -104,7 +104,9 @@ typedef int boot_os_fn (int flag, int argc, char *argv[], bootm_headers_t *images); /* pointers to os/initrd/fdt */
#define CONFIG_BOOTM_LINUX 1 +#if !defined(CONFIG_BLACKFIN) #define CONFIG_BOOTM_NETBSD 1 +#endif #define CONFIG_BOOTM_RTEMS 1
#ifdef CONFIG_BOOTM_LINUX

On 21:04 Thu 05 Feb , Mike Frysinger wrote:
Signed-off-by: Mike Frysinger vapier@gentoo.org
common/cmd_bootm.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 9055672..c814c68 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -104,7 +104,9 @@ typedef int boot_os_fn (int flag, int argc, char *argv[], bootm_headers_t *images); /* pointers to os/initrd/fdt */
#define CONFIG_BOOTM_LINUX 1 +#if !defined(CONFIG_BLACKFIN) #define CONFIG_BOOTM_NETBSD 1 +#endif
Wolfgang ack kumar patch to create global arch config
you may need to move this CONFIG_ their instead of adding ifdef arch
Best Regafds, J.
participants (2)
-
Jean-Christophe PLAGNIOL-VILLARD
-
Mike Frysinger