summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-09-01 04:38:06 +0100
committerMike Frysinger <vapier@gentoo.org>2015-09-01 04:38:06 +0100
commitc8b9e413da48be479387d5fddc3ac3c13b2dd107 (patch)
tree09e202386c636589ee408c3de986018028d3d991
parentinitial 4.1 patchset based on last 4.0 patchset (diff)
downloadlinux-headers-patches-c8b9e413da48be479387d5fddc3ac3c13b2dd107.tar.gz
linux-headers-patches-c8b9e413da48be479387d5fddc3ac3c13b2dd107.tar.bz2
linux-headers-patches-c8b9e413da48be479387d5fddc3ac3c13b2dd107.zip
pull in x86 dirs starting w/4.2
-rwxr-xr-xrip-headers.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/rip-headers.sh b/rip-headers.sh
index 5a7bcc7..1eb9c66 100755
--- a/rip-headers.sh
+++ b/rip-headers.sh
@@ -60,6 +60,11 @@ for a in ${arches} ; do
done
fi
done
+# handle x86 unique cruft
+if [[ -e ${src}/arch/x86/entry/syscalls ]] ; then
+ mkdir -p ${dst}/arch/x86/entry
+ cp -r ${src}/arch/x86/entry/syscalls ${dst}/arch/x86/entry/
+fi
# mips has some stupid unique bs
if [[ -e ${src}/arch/mips/Kbuild.platforms ]] ; then
for f in "${src}"/arch/mips/*/Platform ; do