X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ybin%2Fybin;h=a5669272f2a2f1ffd1c1056026d7a6b62cbf24f3;hb=894b48a4b05b7e682c41473120d8f95c97da9c02;hp=cf58db9ec2da27669ca059c3b443a7dec2edfc0f;hpb=eef44476ec965ef671c9bd239936ef6f2ee38afa;p=yaboot.git diff --git a/ybin/ybin b/ybin/ybin index cf58db9..a566927 100755 --- a/ybin/ybin +++ b/ybin/ybin @@ -29,7 +29,7 @@ fi PRG="${0##*/}" ABSPRG="$0" SIGINT="$PRG: Interrupt caught ... exiting" -VERSION=1.3.14 +VERSION=1.3.15 DEBUG=0 VERBOSE=0 TMP="${TMPDIR:-/tmp}" @@ -1659,14 +1659,15 @@ checkconf || exit 1 if [ "x$bootonce" != "x" ]; then foundlabel=`sed s/\#.*// $bootconf | grep "label=$bootonce$" | wc -l` - if [ "$nonvram" = 0 ]; then + if [ "$nonvram" = 1 ]; then echo 1>&2 "$PRG: --bootonce specified, but nvsetenv not available." exit 1 fi if [ "$foundlabel" = 1 ]; then nvsetenv boot-once "$bootonce" foundlabel=`nvsetenv boot-once` - if [ "$foundlabel" != "boot-once=$bootonce" ]; then + if [ "$foundlabel" != "boot-once=$bootonce" -a \ + "$foundlabel" != "$bootonce" ]; then echo 1>&2 "$PRG: Could not nvsetenv boot-once $bootonce" exit 1 fi