From f2f2998834daee867fedcd086bdb08f9f075c808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Tue, 18 Aug 2026 10:09:10 -0700 Subject: [PATCH] Swap x86 <-> x86_64 symlinks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Swap out the x86 and x86_64 symlinks from > ├── x86 > │   ├── vmlinux_6.19.h > │   └── vmlinux.h -> vmlinux_6.19.h > └── x86_64 -> x86 to > ├── x86 -> x86_64 > └── x86_64 > ├── vmlinux_6.19.h > └── vmlinux.h -> vmlinux_6.19.h This way, one can just `cp --recursive` the extracted CI generated archive over the include/ directory to update without `cp` reporting an error. Signed-off-by: Daniel Müller --- include/x86 | 1 + include/x86_64 | 1 - include/{x86 => x86_64}/vmlinux.h | 0 include/{x86 => x86_64}/vmlinux_6.19.h | 0 4 files changed, 1 insertion(+), 1 deletion(-) create mode 120000 include/x86 delete mode 120000 include/x86_64 rename include/{x86 => x86_64}/vmlinux.h (100%) rename include/{x86 => x86_64}/vmlinux_6.19.h (100%) diff --git a/include/x86 b/include/x86 new file mode 120000 index 0000000..8790996 --- /dev/null +++ b/include/x86 @@ -0,0 +1 @@ +x86_64 \ No newline at end of file diff --git a/include/x86_64 b/include/x86_64 deleted file mode 120000 index f4bad79..0000000 --- a/include/x86_64 +++ /dev/null @@ -1 +0,0 @@ -x86 \ No newline at end of file diff --git a/include/x86/vmlinux.h b/include/x86_64/vmlinux.h similarity index 100% rename from include/x86/vmlinux.h rename to include/x86_64/vmlinux.h diff --git a/include/x86/vmlinux_6.19.h b/include/x86_64/vmlinux_6.19.h similarity index 100% rename from include/x86/vmlinux_6.19.h rename to include/x86_64/vmlinux_6.19.h