#! /bin/bash if [ $# -eq 0 ] then echo "usage: setnparentalcontrol [ID ....]" echo "Sets the parental control infomation for nand application" exit 0 fi if $REVOLUTION_SDK_ROOT/x86/bin/tickleWBI "$REVOLUTION_SDK_ROOT/X86/bin/wbi.bin" -p $* then echo "Successfully done. Set the parental level for nand application." else echo "Failed to set the parental level for nand application." exit 1 fi echo echo "************************************************************************" echo "* If you make master data, you must execute makeWad before you do so!! *" echo "************************************************************************" echo