diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2009-12-07 10:13:32 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2009-12-07 10:13:32 +0000 |
commit | 6a2ea35b7998d44a3b8f5938c5a7603fef220a99 (patch) | |
tree | fcc276dd3b6feb096fa5c3a0f5618bd2342bf1da /target/linux/s3c24xx/patches-2.6.31/080-nr-tty-devices.patch | |
parent | a155e4fd53dbb4e53b2846eb8fb783833dcf07a0 (diff) | |
download | upstream-6a2ea35b7998d44a3b8f5938c5a7603fef220a99.tar.gz upstream-6a2ea35b7998d44a3b8f5938c5a7603fef220a99.tar.bz2 upstream-6a2ea35b7998d44a3b8f5938c5a7603fef220a99.zip |
Remove 2.6.31 support.
SVN-Revision: 18673
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.31/080-nr-tty-devices.patch')
-rw-r--r-- | target/linux/s3c24xx/patches-2.6.31/080-nr-tty-devices.patch | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.31/080-nr-tty-devices.patch b/target/linux/s3c24xx/patches-2.6.31/080-nr-tty-devices.patch deleted file mode 100644 index f594e3d297..0000000000 --- a/target/linux/s3c24xx/patches-2.6.31/080-nr-tty-devices.patch +++ /dev/null @@ -1,60 +0,0 @@ -From 615dc14d7d29e2ff36e1da3cbb421884137bb7eb Mon Sep 17 00:00:00 2001 -From: Lars-Peter Clausen <lars@metafoo.de> -Date: Tue, 21 Jul 2009 12:51:00 +0200 -Subject: [PATCH] 080-nr-tty-devices.patch - ---- - drivers/char/Kconfig | 12 ++++++++++++ - include/linux/vt.h | 11 +++++++++++ - 2 files changed, 23 insertions(+), 0 deletions(-) - -diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig -index 6a06913..8e17552 100644 ---- a/drivers/char/Kconfig -+++ b/drivers/char/Kconfig -@@ -66,6 +66,18 @@ config VT_CONSOLE - - If unsure, say Y. - -+config NR_TTY_DEVICES -+ int "Maximum tty device number" -+ depends on VT -+ default 63 -+ ---help--- -+ This is the highest numbered device created in /dev. You will actually have -+ NR_TTY_DEVICES+1 devices in /dev. The default is 63, which will result in -+ 64 /dev entries. The lowest number you can set is 11, anything below that, -+ and it will default to 11. 63 is also the upper limit so we don't overrun -+ the serial consoles. -+ -+ - config HW_CONSOLE - bool - depends on VT && !S390 && !UML -diff --git a/include/linux/vt.h b/include/linux/vt.h -index 02c1c02..2ba4d21 100644 ---- a/include/linux/vt.h -+++ b/include/linux/vt.h -@@ -18,8 +18,19 @@ extern int unregister_vt_notifier(struct notifier_block *nb); - * resizing). - */ - #define MIN_NR_CONSOLES 1 /* must be at least 1 */ -+#if (CONFIG_NR_TTY_DEVICES < 4) -+/* Lower Limit */ -+#define MAX_NR_CONSOLES 4 /* serial lines start at 64 */ -+#define MAX_NR_USER_CONSOLES 4 /* must be root to allocate above this */ -+#elif (CONFIG_NR_TTY_DEVICES > 63) -+/* Upper Limit */ - #define MAX_NR_CONSOLES 63 /* serial lines start at 64 */ - #define MAX_NR_USER_CONSOLES 63 /* must be root to allocate above this */ -+#else -+/* They chose a sensible number */ -+#define MAX_NR_CONSOLES CONFIG_NR_TTY_DEVICES -+#define MAX_NR_USER_CONSOLES CONFIG_NR_TTY_DEVICES -+#endif - /* Note: the ioctl VT_GETSTATE does not work for - consoles 16 and higher (since it returns a short) */ - --- -1.5.6.5 - |