diff options
Diffstat (limited to 'busybox/busybox-1.00/console.patch')
-rw-r--r-- | busybox/busybox-1.00/console.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/busybox/busybox-1.00/console.patch b/busybox/busybox-1.00/console.patch index e69de29bb2..d57bdfbe89 100644 --- a/busybox/busybox-1.00/console.patch +++ b/busybox/busybox-1.00/console.patch @@ -0,0 +1,13 @@ +--- busybox-1.00-pre2/libbb/get_console.c~console ++++ busybox-1.00-pre2/libbb/get_console.c +@@ -86,10 +86,6 @@ + { + int fd; + +- if (-1 == (fd = open_a_console("/dev/console"))) +- return -1; +- else +- return fd; + fd = open_a_console(CURRENT_TTY); + if (fd >= 0) + return fd; |