X-Git-Url: http://git.ozlabs.org/?p=yaboot.git;a=blobdiff_plain;f=ybin%2Fybin;h=d8836225720331ee11c0fd8069c1afba8c0d7a7a;hp=379b94b912593e4f9eff6e61c90df59c9dbc98c9;hb=1110d149dc41114e22297244ca274b9a52487356;hpb=f843e296a197cc94c0e0f80d49a67dc71c6785a2 diff --git a/ybin/ybin b/ybin/ybin index 379b94b..d883622 100755 --- a/ybin/ybin +++ b/ybin/ybin @@ -1152,6 +1152,7 @@ raw_install() fi sync ; sync [ "$VERBOSE" = 1 ] && echo "$PRG: Installation successful" + return 0 } ## make sure the first stage ofboot generator is compatible. @@ -1658,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