From a404a56e48c2796e4621b42cd461bf5e95ea5e09 Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Wed, 29 Apr 2015 19:49:28 +0200 Subject: [PATCH] Enable loadb/loady commands by default for most of supported devices --- u-boot/include/configs/ap121.h | 6 ++++-- u-boot/include/configs/db12x.h | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/u-boot/include/configs/ap121.h b/u-boot/include/configs/ap121.h index 6ec8cbe..6939219 100644 --- a/u-boot/include/configs/ap121.h +++ b/u-boot/include/configs/ap121.h @@ -816,7 +816,8 @@ CFG_CMD_BOOTD | \ CFG_CMD_ITEST | \ CFG_CMD_IMI | \ - CFG_CMD_ENV) + CFG_CMD_ENV | \ + CFG_CMD_LOADB) #else @@ -831,7 +832,8 @@ CFG_CMD_ECHO | \ CFG_CMD_BOOTD | \ CFG_CMD_ITEST | \ - CFG_CMD_ENV) + CFG_CMD_ENV | \ + CFG_CMD_LOADB) #endif diff --git a/u-boot/include/configs/db12x.h b/u-boot/include/configs/db12x.h index 8e22735..8fe8377 100644 --- a/u-boot/include/configs/db12x.h +++ b/u-boot/include/configs/db12x.h @@ -113,7 +113,8 @@ CFG_CMD_ECHO | \ CFG_CMD_BOOTD | \ CFG_CMD_ITEST | \ - CFG_CMD_ENV) + CFG_CMD_ENV | \ + CFG_CMD_LOADB) // Enable NetConsole and custom NetConsole port #define CONFIG_NETCONSOLE -- 2.25.1