summaryrefslogtreecommitdiffstats
path: root/ps3-bl-option.in
blob: ecd4a4fb72d68e729c8d62828780f95993f4e477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/bin/sh
#
#  Copyright (C) 2008 Sony Computer Entertainment Inc.
#  Copyright 2008 Sony Corp.
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; version 2 of the License.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#

usage() {
	echo "" >&2
	echo "SYNOPSIS" >&2
	echo "     ps3-bl-option  (@PACKAGE_NAME@) @PACKAGE_VERSION@" >&2
	echo "" >&2
	echo "DESCRIPTION" >&2
	echo "     Get and set PS3 bootloader options in flash." >&2
	echo "" >&2
	echo "OPTIONS" >&2
	echo "     -m, --get-video-mode" >&2
	echo "             Get the bootloader video mode." >&2
	echo "" >&2
	echo "     -M, --set-video-mode value" >&2
	echo "             Set the bootloader video mode." >&2
	echo "" >&2
	echo "     -p, --get-petitboot-default" >&2
	echo "             Get the default Petitboot menu item." >&2
	echo "" >&2
	echo "     -P, --set-petitboot-default value" >&2
	echo "             Set the default Petitboot menu item." >&2
	echo "" >&2
	echo "     -t, --get-telnet-enabled" >&2
	echo "             Get the telnet enabled flag." >&2
	echo "" >&2
	echo "     -T, --set-telnet-enabled value" >&2
	echo "             Set the telnet enabled flag." >&2
	echo "" >&2
	echo "     -h, --help" >&2
	echo "             Print a help message." >&2
	echo "" >&2
	echo "SEE ALSO" >&2
	echo "     ps3-flash-util(8)" >&2
	echo "" >&2
	echo "Send bug reports to @PACKAGE_BUGREPORT@" >&2
	exit 1
}

version() {
	echo "ps3-bl-option (@PACKAGE_NAME@) @PACKAGE_VERSION@"
	exit 1
}

if [ "$#" -eq 0 ] ; then
	echo "ERROR: bad arg" >&2;
	usage
fi

get_flag() {
	flags=`ps3-flash-util --db-print $1 $2`
	echo $(( ${flags:-0} & $3 ))
}

set_flag() {
	flags=`ps3-flash-util --db-print $1 $2`

	if [ $4 -eq 0  ]; then
		ps3-flash-util --db-write-half $1 $2 $(( ${flags:-0} & ~$3 ))
	else
		ps3-flash-util --db-write-half $1 $2 $(( ${flags:-0} | $3 ))
	fi
}

# owners
petitboot="3"

# keys
menu="1"
video="2"
flags="3"

# flags
telnet="1"

case "$1" in
	-m | --get-video-mode)
		ps3-flash-util --db-print ${petitboot} ${video}
		;;
	-M | --set-video-mode)
		ps3-flash-util --db-write-half ${petitboot} ${video} $2
		;;
	-p | --get-petitboot-default)
		ps3-flash-util --db-print ${petitboot} ${menu}
		;;
	-P | --set-petitboot-default)
		ps3-flash-util --db-write-word ${petitboot} ${menu} $2
		;;
	-t | --get-telnet-enabled)
		get_flag ${petitboot} ${flags} ${telnet}
		;;
	-T | --set-telnet-enabled)
		set_flag ${petitboot} ${flags} ${telnet} $2
		;;
	-h | --help)
		usage
		;;
	--version | -V)
		version
		;;
	*)
		echo "ERROR: bad arg $1" >&2;
		usage
		;;
esac