aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ps3
diff options
context:
space:
mode:
authorYuji Mano <yuji.mano@am.sony.com>2008-06-16 19:37:00 +0000
committerYuji Mano <yuji.mano@am.sony.com>2008-06-16 19:37:00 +0000
commit0b5f60242198f2b4b6070e50a21d2ee24d3ccd04 (patch)
tree9286bc258942fa88d956527a202499dae0774562 /target/linux/ps3
parent5ee48c0b00bbb5225739c91a9f4912bb6fa38150 (diff)
downloadupstream-0b5f60242198f2b4b6070e50a21d2ee24d3ccd04.tar.gz
upstream-0b5f60242198f2b4b6070e50a21d2ee24d3ccd04.tar.bz2
upstream-0b5f60242198f2b4b6070e50a21d2ee24d3ccd04.zip
Revert previous bad commit r11512
SVN-Revision: 11513
Diffstat (limited to 'target/linux/ps3')
-rwxr-xr-xtarget/linux/ps3/base-files/bin/login14
1 files changed, 8 insertions, 6 deletions
diff --git a/target/linux/ps3/base-files/bin/login b/target/linux/ps3/base-files/bin/login
index 2e649f04fe..98fcbf0056 100755
--- a/target/linux/ps3/base-files/bin/login
+++ b/target/linux/ps3/base-files/bin/login
@@ -1,11 +1,13 @@
#!/bin/sh
# Copyright (C) 2008 OpenWrt.org
-bl_option=/sbin/bl-option
+ps3_db_bin=/usr/sbin/ps3-flash-util
+ps3_db_owner_petitboot=3
+ps3_db_key_telnet=3
-if [ ! -f $bl_option ] ||
- [ ! `$bl_option --get-telnet-enabled` ] ||
- [ `$bl_option --get-telnet-enabled` = "0" ]; then
+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
echo \
"
=== IMPORTANT ==========================
@@ -17,12 +19,12 @@ if [ ! -f $bl_option ] ||
You can enable telnet login with the
following command in the host console:
- # $bl_option -T 1
+ # $ps3_db_bin -H $ps3_db_owner_petitboot $ps3_db_key_telnet 1
You can disable telnet login with the
following command in the host console:
- # $bl_option -T 0
+ # $ps3_db_bin -H $ps3_db_owner_petitboot $ps3_db_key_telnet 0
----------------------------------------
"
exit 0