summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Noberasco <s4t4n@gentoo.org>2006-11-27 15:38:05 +0000
committerMichele Noberasco <s4t4n@gentoo.org>2006-11-27 15:38:05 +0000
commit109f862c0e9951c248f65ef7d8c1189bb795d2f8 (patch)
tree9227a9d6fdf277c26f5931f21e45a871e9f418f1 /app-laptop/omnibook/files
parentStable for x86, see bug #156396. Wiped out previous releases. (diff)
downloadhistorical-109f862c0e9951c248f65ef7d8c1189bb795d2f8.tar.gz
historical-109f862c0e9951c248f65ef7d8c1189bb795d2f8.tar.bz2
historical-109f862c0e9951c248f65ef7d8c1189bb795d2f8.zip
Stable for x86, see bug #156396. Wiped out previous releases.
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'app-laptop/omnibook/files')
-rw-r--r--app-laptop/omnibook/files/digest-omnibook-200601263
-rw-r--r--app-laptop/omnibook/files/omnibook-fix-obtest-segfault.patch54
-rw-r--r--app-laptop/omnibook/files/remove-legacy-isa-fromio.patch17
3 files changed, 0 insertions, 74 deletions
diff --git a/app-laptop/omnibook/files/digest-omnibook-20060126 b/app-laptop/omnibook/files/digest-omnibook-20060126
deleted file mode 100644
index e0975985f6e2..000000000000
--- a/app-laptop/omnibook/files/digest-omnibook-20060126
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 856b82770aa9407af435ff9b32444bf9 omnibook-20060126.tar.gz 59125
-RMD160 e8a35a1548874406ddbf6d04dca746b50fb52fed omnibook-20060126.tar.gz 59125
-SHA256 d5b64cd1f0a8dd6da5510c958e9a1c8f53f6ecb5a0d644655732b9812db15ffd omnibook-20060126.tar.gz 59125
diff --git a/app-laptop/omnibook/files/omnibook-fix-obtest-segfault.patch b/app-laptop/omnibook/files/omnibook-fix-obtest-segfault.patch
deleted file mode 100644
index ba8a2b190d2f..000000000000
--- a/app-laptop/omnibook/files/omnibook-fix-obtest-segfault.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-This patch was written by Andrew D. Keyser (aka Legoguy) <andrewdk@sbcglobal.net>
-to fix the segfaulting problem described in http://bugs.gentoo.org/86335
-Description:
-Don't know why this even worked before, but the 'q' variable was never set in
-the case of -r, -c, -k, -i, or -s flags - but it was still operated on after
-the switch, so that caused a segfault. Moved the iopl check above the switch
-and moved the operations on q into the switch.
-Fixes problem.
-
-diff -urp omnibook-2005-02-17.orig/misc/obtest/obtest.c omnibook-2005-02-17/misc/obtest/obtest.c
---- omnibook-2005-02-17.orig/misc/obtest/obtest.c 2005-06-12 18:09:07.000000000 +0200
-+++ omnibook-2005-02-17/misc/obtest/obtest.c 2005-06-12 18:09:35.000000000 +0200
-@@ -297,13 +297,18 @@ int main(int argc, char *argv[])
- if (sw[0] != '-')
- usage(argv[0]);
-
-+ if (iopl(3)) {
-+ perror("iopl");
-+ exit (1);
-+ }
-+
- switch (sw[1]) {
- case 'r':
- case 'c':
- case 'k':
- case 'i':
- case 's':
-- if (argc == 3)
-+ if (argc == 3)
- p = argv[2];
- else
- usage(argv[0]);
-@@ -313,6 +318,7 @@ int main(int argc, char *argv[])
- if (argc == 4) {
- p = argv[2];
- q = argv[3];
-+ data = ntoi(q);
- } else
- usage(argv[0]);
- break;
-@@ -320,13 +326,7 @@ int main(int argc, char *argv[])
- usage(argv[0]);
- }
-
-- if (iopl(3)) {
-- perror("iopl");
-- exit (1);
-- }
--
- a = ntoi(p);
-- data = ntoi(q);
-
- switch (sw[1]) {
- case 'w':
diff --git a/app-laptop/omnibook/files/remove-legacy-isa-fromio.patch b/app-laptop/omnibook/files/remove-legacy-isa-fromio.patch
deleted file mode 100644
index abb111e2f5eb..000000000000
--- a/app-laptop/omnibook/files/remove-legacy-isa-fromio.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Patch to fix compile and load problem.
-Caused by a cleanup:
-http://lkml.org/lkml/2006/1/26/327
-
---- omnibook-20060126/dmi.c 2003-09-29 11:50:34.000000000 +0200
-+++ omnibook-20060126/dmi.c 2006-03-02 02:00:39.000000000 +0100
-@@ -128,7 +128,9 @@
-
- while( fp < 0xFFFFF)
- {
-- isa_memcpy_fromio(buf, fp, 15);
-+ void __iomem *addr = ioremap(fp, 15);
-+ memcpy_fromio(buf, addr, 15);
-+ iounmap(addr);
- if(memcmp(buf, "_DMI_", 5)==0 && dmi_checksum(buf))
- {
- u16 num=buf[13]<<8|buf[12];