added more scripts for enabling debug messages in HV services
[linux_hv_scripts.git] / enable_printk_hv_proc3.sh
blobdf185c7671066b8278b351e0d794e1179de76b61
1 #!/bin/bash
2 # /********************************************************
3 # Copyright (C) 2011 graf_chokolo <grafchokolo@googlemail.com>
4 # This is free software. You may redistribute copies of it
5 # under the terms of
6 # the GNU General Public License 2
7 # <http://www.gnu.org/licenses/gpl2.html>.
8 # There is NO WARRANTY, to the extent permitted by law.
10 # This script contains comments on how to use lv1_peek and lv1_poke in GameOS to achieve the same effect
11 # Please use it at your own discretion.
12 # credit goes to a.user (a.user@bk.ru)
14 # It also contains comments on how to disable the patch
15 # This script has been tested on 3.55 Kmeaw CFW
16 # ******************************************************/
18 perl -e 'printf "\x00\x00\x00\x01"' | dd of=/dev/ps3ram seek=$((0x0008d940)) bs=1 count=4
19 perl -e 'printf "\x00\x00\x00\x01"' | dd of=/dev/ps3ram seek=$((0x0008d944)) bs=1 count=4
20 #This is the same as
21 #perl -e 'printf "\x00\x00\x00\x01\x00\x00\x00\x01"' | dd of=/dev/ps3ram seek=$((0x0008d940)) bs=1 count=8
22 #lv1_poke(0x8d940, 0x0000000100000001ULL);
24 #How to disable?
25 #perl -e 'printf "\x00\x00\x00\x00\x00\x00\x00\x00"' | dd of=/dev/ps3ram seek=$((0x0008d940)) bs=1 count=8
27 #To Display
28 #dd if=/dev/ps3ram skip=$((0x0008d940)) bs=1 count=8 | hexdump -C