From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Mon, 29 Feb 2016 16:39:58 -0700 Subject: [U-Boot] [PATCH 4/9] sandbox: Avoid calling commands when not available In-Reply-To: <1456459256-32643-5-git-send-email-sjg@chromium.org> References: <1456459256-32643-1-git-send-email-sjg@chromium.org> <1456459256-32643-5-git-send-email-sjg@chromium.org> Message-ID: <56D4D6CE.8040703@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 02/25/2016 09:00 PM, Simon Glass wrote: > Don't try to run commands when not supported. > diff --git a/arch/sandbox/cpu/start.c b/arch/sandbox/cpu/start.c > +int board_run_command(const char *cmdline) > +{ > + printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n"); > + > + return 1; > +} > + Isn't this part of patch 5/9?