The patch titled
vt: allow for the palette to be exposed and changed via sysfs
has been added to the -mm tree. Its filename is
vt-allow-for-the-palette-to-be-exposed-and-changed-via-sysfs.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: vt: allow for the palette to be exposed and changed via sysfs
From: Jan Engelhardt <[EMAIL PROTECTED]>
Allow for the palette to be exposed and changed via sysfs. A call to
/usr/bin/reset will slurp the new definitions in for the current console.
Already posted at http://lkml.org/lkml/2006/1/15/149
Signed-off-by: Jan Engelhardt <[EMAIL PROTECTED]>
Cc: "Antonino A. Daplas" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/char/vt.c | 4 ++++
1 file changed, 4 insertions(+)
diff -puN
drivers/char/vt.c~vt-allow-for-the-palette-to-be-exposed-and-changed-via-sysfs
drivers/char/vt.c
---
a/drivers/char/vt.c~vt-allow-for-the-palette-to-be-exposed-and-changed-via-sysfs
+++ a/drivers/char/vt.c
@@ -934,6 +934,10 @@ int default_grn[] = {0x00,0x00,0xaa,0x55
int default_blu[] = {0x00,0x00,0x00,0x00,0xaa,0xaa,0xaa,0xaa,
0x55,0x55,0x55,0x55,0xff,0xff,0xff,0xff};
+module_param_array(default_red, int, NULL, S_IRUGO | S_IWUSR);
+module_param_array(default_grn, int, NULL, S_IRUGO | S_IWUSR);
+module_param_array(default_blu, int, NULL, S_IRUGO | S_IWUSR);
+
/*
* gotoxy() must verify all boundaries, because the arguments
* might also be negative. If the given position is out of
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-kbuild.patch
remove-artificial-software-max_loop-limit.patch
vt-allow-for-the-palette-to-be-exposed-and-changed-via-sysfs.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html