aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@kernel.org>2015-12-04 15:52:20 -0800
committerLuis R. Rodriguez <mcgrof@kernel.org>2016-02-11 08:42:16 -0800
commita4f36435e04fd213e35b6d097b3a4007b8df567f (patch)
treed7ee14857e25889da9320d9452c191da494e971f
parent682f59a95a7bd91ec30fc63548e9a919bb20bded (diff)
downloadlinker-tables-a4f36435e04fd213e35b6d097b3a4007b8df567f.tar.gz
synch.sh: Use to sync with Linux
To sync this tree to your Linux tree just call this script from your Linux tree. At least init.c compiles now. Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
-rwxr-xr-xsync.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/sync.sh b/sync.sh
new file mode 100755
index 0000000..901e167
--- /dev/null
+++ b/sync.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+cp ~/devel/table-init/include/linux/tables.h include/linux/tables.h
+cp ~/devel/table-init/arch/x86/include/asm/x86_init_fn.h arch/x86/include/asm/x86_init_fn.h
+cp ~/devel/table-init/arch/x86/kernel/init.c arch/x86/kernel/init.c
+
+git add \
+ include/linux/tables.h \
+ arch/x86/include/asm/x86_init_fn.h \
+ arch/x86/kernel/init.c
+