aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/901-kbdmode.patch
diff options
context:
space:
mode:
authorNicolas Thill <nico@openwrt.org>2008-11-09 17:55:06 +0000
committerNicolas Thill <nico@openwrt.org>2008-11-09 17:55:06 +0000
commit7bceccc5633cb3fe45933fcd3db24e59023d96ec (patch)
tree0b111f4fffbe0b6cdc8f6abd6879b3ea05b36839 /package/busybox/patches/901-kbdmode.patch
parentdbc2b067511162d19810439174f68b2a5eba48e2 (diff)
downloadupstream-7bceccc5633cb3fe45933fcd3db24e59023d96ec.tar.gz
upstream-7bceccc5633cb3fe45933fcd3db24e59023d96ec.tar.bz2
upstream-7bceccc5633cb3fe45933fcd3db24e59023d96ec.zip
upgrade busybox to 1.11.3
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13160 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/901-kbdmode.patch')
-rw-r--r--package/busybox/patches/901-kbdmode.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/busybox/patches/901-kbdmode.patch b/package/busybox/patches/901-kbdmode.patch
deleted file mode 100644
index c668d62c38..0000000000
--- a/package/busybox/patches/901-kbdmode.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- a/console-tools/kbd_mode.c
-+++ b/console-tools/kbd_mode.c
-@@ -2,7 +2,7 @@
- /*
- * Mini kbd_mode implementation for busybox
- *
-- * Copyright (C) 2007 Loïc Grenié <loic.grenie@gmail.com>
-+ * Copyright (C) 2007 Loic Grenie <loic.grenie@gmail.com>
- * written using Andries Brouwer <aeb@cwi.nl>'s kbd_mode from
- * console-utils v0.2.3, licensed under GNU GPLv2
- *
-@@ -46,7 +46,8 @@
- printf("The keyboard is in %s mode\n", mode);
- } else {
- opt = opt & UNICODE ? 3 : opt >> 1;
-- xioctl(fd, KDSKBMODE, opt);
-+ /* double cast prevents warnings about widening conversion */
-+ xioctl(fd, KDSKBMODE, (void*)(ptrdiff_t)opt);
- }
-
- if (ENABLE_FEATURE_CLEAN_UP)