summaryrefslogtreecommitdiff
path: root/pkg/linux-headers/x86.lua
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2020-02-13 14:07:20 -0800
committerMichael Forney <mforney@mforney.org>2020-02-20 18:00:47 -0800
commitfac05879fd7b857d61ce5d34d45fe930fe0192a3 (patch)
tree11553b43ec426cb973b77348ad2b4254a75eee78 /pkg/linux-headers/x86.lua
parent15df2417a80027ffe500d8ca6a4fc1ff1d26bca4 (diff)
Add linux-headers 5.5.3
Diffstat (limited to 'pkg/linux-headers/x86.lua')
-rw-r--r--pkg/linux-headers/x86.lua66
1 files changed, 66 insertions, 0 deletions
diff --git a/pkg/linux-headers/x86.lua b/pkg/linux-headers/x86.lua
new file mode 100644
index 00000000..63f796b6
--- /dev/null
+++ b/pkg/linux-headers/x86.lua
@@ -0,0 +1,66 @@
+return {
+ -- <cd src/arch/x86/include/uapi && find * -name '*.h' -exec printf "\t'%s',\n" {} + | LC_COLLATE=C sort
+ 'asm/a.out.h',
+ 'asm/auxvec.h',
+ 'asm/bitsperlong.h',
+ 'asm/boot.h',
+ 'asm/bootparam.h',
+ 'asm/byteorder.h',
+ 'asm/debugreg.h',
+ 'asm/e820.h',
+ 'asm/hw_breakpoint.h',
+ 'asm/hwcap2.h',
+ 'asm/ist.h',
+ 'asm/kvm.h',
+ 'asm/kvm_para.h',
+ 'asm/kvm_perf.h',
+ 'asm/ldt.h',
+ 'asm/mce.h',
+ 'asm/mman.h',
+ 'asm/msgbuf.h',
+ 'asm/msr.h',
+ 'asm/mtrr.h',
+ 'asm/perf_regs.h',
+ 'asm/posix_types.h',
+ 'asm/posix_types_32.h',
+ 'asm/posix_types_64.h',
+ 'asm/posix_types_x32.h',
+ 'asm/prctl.h',
+ 'asm/processor-flags.h',
+ 'asm/ptrace-abi.h',
+ 'asm/ptrace.h',
+ 'asm/sembuf.h',
+ 'asm/setup.h',
+ 'asm/shmbuf.h',
+ 'asm/sigcontext.h',
+ 'asm/sigcontext32.h',
+ 'asm/siginfo.h',
+ 'asm/signal.h',
+ 'asm/stat.h',
+ 'asm/statfs.h',
+ 'asm/svm.h',
+ 'asm/swab.h',
+ 'asm/ucontext.h',
+ 'asm/unistd.h',
+ 'asm/vm86.h',
+ 'asm/vmx.h',
+ 'asm/vsyscall.h',
+ unistd={
+ {
+ dst='unistd_32.h',
+ src='arch/x86/entry/syscalls/syscall_32.tbl',
+ abi='i386',
+ },
+ {
+ dst='unistd_x32.h',
+ src='arch/x86/entry/syscalls/syscall_64.tbl',
+ abi='common|x32',
+ off='__X32_SYSCALL_BIT',
+ },
+ {
+ dst='unistd_64.h',
+ src='arch/x86/entry/syscalls/syscall_64.tbl',
+ abi='common|64',
+ },
+ },
+}