diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-09-16 17:22:57 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-09-16 17:22:57 +0200 |
commit | 81c4c7c2cf2c5ff27a6c02e41bf484a53ea942c2 (patch) | |
tree | 71e5ee053da99e7130d2668409b2abe676015546 /toolchain/kernel-headers | |
parent | 2fe7aa2130f3e72d2b39ed0929cfc6ae803cecd4 (diff) |
make adk compile system work on shuttle
- add some missing packages like cpio, lzma and gnu wget
- make microperl more featureful, needed for kernel-header
installation
- make a dependency to perl
- fix header installation for $libc-dev package
- fix 64bit uclibc setup, simplify gcc patches
and totally unrelated
- add preliminary kvm and libvirt support (not tested)
Diffstat (limited to 'toolchain/kernel-headers')
-rw-r--r-- | toolchain/kernel-headers/patches/microperl.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/toolchain/kernel-headers/patches/microperl.patch b/toolchain/kernel-headers/patches/microperl.patch new file mode 100644 index 000000000..2955b7421 --- /dev/null +++ b/toolchain/kernel-headers/patches/microperl.patch @@ -0,0 +1,24 @@ +diff -Nur linux-2.6.30.5.orig/scripts/headers_check.pl linux-2.6.30.5/scripts/headers_check.pl +--- linux-2.6.30.5.orig/scripts/headers_check.pl 2009-08-16 23:19:38.000000000 +0200 ++++ linux-2.6.30.5/scripts/headers_check.pl 2009-09-14 21:16:21.000000000 +0200 +@@ -18,7 +18,7 @@ + # + # 3) Check for leaked CONFIG_ symbols + +-use strict; ++#use strict; + + my ($dir, $arch, @files) = @ARGV; + +diff -Nur linux-2.6.30.5.orig/scripts/headers_install.pl linux-2.6.30.5/scripts/headers_install.pl +--- linux-2.6.30.5.orig/scripts/headers_install.pl 2009-08-16 23:19:38.000000000 +0200 ++++ linux-2.6.30.5/scripts/headers_install.pl 2009-09-14 21:16:11.000000000 +0200 +@@ -16,7 +16,7 @@ + # 2) Drop include of compiler.h + # 3) Drop all sections defined out by __KERNEL__ (using unifdef) + +-use strict; ++#use strict; + + my ($readdir, $installdir, $arch, @files) = @ARGV; + |