summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
authorhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-03-13 12:18:35 +0000
committerhcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-03-13 12:18:35 +0000
commit13e14a7df81e0c170cc07768d968d64c18715df5 (patch)
tree31d7e8731eebbfdb01d92cb89d050eadd60aaed1 /package/busybox
parent6f8c6b50054d2d45bf69081a9d24bfe93f4fff37 (diff)
Small bug fix to package/kernel/modules/other.mk
stty broken in busybox 1.4.1, added patch with fixed code from BB SVN. This will need to be removed when 1.4.2 is released. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6559 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/930-stty_bug_fix.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/busybox/patches/930-stty_bug_fix.patch b/package/busybox/patches/930-stty_bug_fix.patch
new file mode 100644
index 000000000..f33e6b55f
--- /dev/null
+++ b/package/busybox/patches/930-stty_bug_fix.patch
@@ -0,0 +1,26 @@
+--- build_arm/busybox-1.4.1/coreutils/stty.c.old 2007-03-13 12:59:49.000000000 +0100
++++ build_arm/busybox-1.4.1/coreutils/stty.c 2007-03-13 07:51:38.000000000 +0100
+@@ -568,10 +568,11 @@
+ NULL
+ };
+ int i = index_in_str_array(params, name);
+- if (i) {
+- if (!(i == 4 || i == 5))
+- i |= 0x80;
+- }
++ if (i < 0)
++ return 0;
++ if (!(i == 4 || i == 5))
++ i |= 0x80;
++
+ return i;
+ }
+
+@@ -907,6 +908,7 @@
+ #define STTY_verbose_output (1<<2)
+ #define STTY_recoverable_output (1<<3)
+ #define STTY_noargs (1<<4)
++int stty_main(int argc, char **argv);
+ int stty_main(int argc, char **argv)
+ {
+ struct termios mode;