From 32f358d6ff39696dc2db5770e74972f7be82cb23 Mon Sep 17 00:00:00 2001
From: ymano <ymano@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Mon, 16 Jun 2008 19:37:00 +0000
Subject: Revert previous bad commit r11512

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11513 3c298f89-4303-0410-b956-a3cf2f4a3e73
---
 target/linux/ps3/base-files/bin/login | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

(limited to 'target/linux')

diff --git a/target/linux/ps3/base-files/bin/login b/target/linux/ps3/base-files/bin/login
index 2e649f04f..98fcbf005 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
-- 
cgit v1.2.3