diff options
author | Jay Freeman <saurik@saurik.com> | 2008-02-27 23:51:48 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-02-27 23:51:48 +0000 |
commit | 038b4ff3a01fcb8289a1f4121e7372b1ed8c584d (patch) | |
tree | fde489951558f9bbe60e3fcf2116b82d9fd18841 /data/system-cmds/dmesg.diff | |
parent | 6227231071d60d6af66599f7c31ecafc637515e7 (diff) |
Added dmesg to system-cmds.
git-svn-id: http://svn.telesphoreo.org/trunk@123 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/system-cmds/dmesg.diff')
-rw-r--r-- | data/system-cmds/dmesg.diff | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/system-cmds/dmesg.diff b/data/system-cmds/dmesg.diff new file mode 100644 index 000000000..6c549c1ed --- /dev/null +++ b/data/system-cmds/dmesg.diff @@ -0,0 +1,20 @@ +diff -ru system_cmds-431/dmesg.tproj/dmesg.c system_cmds-431+iPhone/dmesg.tproj/dmesg.c +--- system_cmds-431/dmesg.tproj/dmesg.c 2006-05-05 04:12:18.000000000 +0000 ++++ system_cmds-431+iPhone/dmesg.tproj/dmesg.c 2008-02-27 23:48:08.000000000 +0000 +@@ -57,7 +57,6 @@ + #include <stdio.h> + #include <stdlib.h> + #include <vis.h> +-#include <libproc.h> + + void + usage() { +@@ -73,7 +72,7 @@ + if (argc > 1) + usage(); + +- if ((data_size = proc_kmsgbuf(msgbuf, sizeof(msgbuf))) == 0){ ++ if ((data_size = syscall(336, 4, 0, 0, (uint64_t) 0, msgbuf, sizeof(msgbuf))) == -1){ + perror("Unable to obtain kernel buffer"); + usage(); + } |