9
0
Fork 0

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 <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-04-17 11:40:52 +02:00
parent 59dbb4fe2c
commit 8f98a3a39c
1 changed files with 1 additions and 1 deletions

View File

@ -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