diff options
author | Yuji Mano <yuji.mano@am.sony.com> | 2008-06-16 19:14:13 +0000 |
---|---|---|
committer | Yuji Mano <yuji.mano@am.sony.com> | 2008-06-16 19:14:13 +0000 |
commit | 75a04f0984dc8bc3b631a41d8f1be4eafbfa4ee5 (patch) | |
tree | de18edb381b9b2a3b969e65df0f7ac4d167dacf4 /target/linux | |
parent | f2a1a23ae7489f4c1685522f6382751fd5ab7f6b (diff) | |
download | upstream-75a04f0984dc8bc3b631a41d8f1be4eafbfa4ee5.tar.gz upstream-75a04f0984dc8bc3b631a41d8f1be4eafbfa4ee5.tar.bz2 upstream-75a04f0984dc8bc3b631a41d8f1be4eafbfa4ee5.zip |
Add the PS3 specific utility bl-option, a helper sctipt
to get and set bootloader options in flash memory.
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11512 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rwxr-xr-x | target/linux/ps3/base-files/bin/login | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/target/linux/ps3/base-files/bin/login b/target/linux/ps3/base-files/bin/login index 98fcbf0056..2e649f04fe 100755 --- a/target/linux/ps3/base-files/bin/login +++ b/target/linux/ps3/base-files/bin/login @@ -1,13 +1,11 @@ #!/bin/sh # Copyright (C) 2008 OpenWrt.org -ps3_db_bin=/usr/sbin/ps3-flash-util -ps3_db_owner_petitboot=3 -ps3_db_key_telnet=3 +bl_option=/sbin/bl-option -if [ ! -f $ps3_db_bin ] || - [ ! `$ps3_db_bin -P $ps3_db_owner_petitboot $ps3_db_key_telnet` ] || - [ `$ps3_db_bin -P $ps3_db_owner_petitboot $ps3_db_key_telnet` = 0 ]; then +if [ ! -f $bl_option ] || + [ ! `$bl_option --get-telnet-enabled` ] || + [ `$bl_option --get-telnet-enabled` = "0" ]; then echo \ " === IMPORTANT ========================== @@ -19,12 +17,12 @@ if [ ! -f $ps3_db_bin ] || You can enable telnet login with the following command in the host console: - # $ps3_db_bin -H $ps3_db_owner_petitboot $ps3_db_key_telnet 1 + # $bl_option -T 1 You can disable telnet login with the following command in the host console: - # $ps3_db_bin -H $ps3_db_owner_petitboot $ps3_db_key_telnet 0 + # $bl_option -T 0 ---------------------------------------- " exit 0 |