From 8f98a3a39ce100e5e09265b7e4bad233bad7e883 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 17 Apr 2013 11:40:52 +0200 Subject: [PATCH] defaultenv-2: Fix verbose booting During option parsing we use the variable BOOT_BOOTMOPTS, all other scripts use BOOT_BOOTM_OPTS though. Fix this by using the same variable everywhere. Signed-off-by: Sascha Hauer --- defaultenv-2/base/bin/boot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaultenv-2/base/bin/boot b/defaultenv-2/base/bin/boot index f7f460ea0..eed4b3c8b 100644 --- a/defaultenv-2/base/bin/boot +++ b/defaultenv-2/base/bin/boot @@ -17,7 +17,7 @@ $0 [OPTIONS] [source]\n while getopt "vdhl" opt; do if [ ${opt} = v ]; then - BOOT_BOOTMOPTS="$BOOT_BOOTMOPTS -v" + BOOT_BOOTM_OPTS="$BOOT_BOOTM_OPTS -v" BOOT_VERBOSE=1 elif [ ${opt} = d ]; then BOOT_DRYRUN=1