Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/39042d821ed882d448f1bcd6505df7fb6700b8f0 You should set ROOT_URL correctly, otherwise the web may not work correctly.

sandbox: Allow -c argument to provide a command list

This allows passing of entire scripts to sandbox with the -c argument,
which is useful for testing. Commands can be delimited with a newline
or semicolon.

Signed-off-by: Simon Glass <sjg@chromium.org>
master
Simon Glass 12 years ago committed by Tom Rini
parent 095686d3f5
commit 39042d821e
  1. 2
      arch/sandbox/cpu/start.c

@ -90,7 +90,7 @@ int sandbox_main_loop_init(void)
/* Execute command if required */
if (state->cmd) {
run_command(state->cmd, 0);
run_command_list(state->cmd, -1, 0);
os_exit(state->exit_type);
}

Loading…
Cancel
Save