File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ pub static VMLINUX_arm: &[u8] = include_bytes!("../include/arm/vmlinux.h");
1414pub static VMLINUX_loongarch64 : & [ u8 ] = include_bytes ! ( "../include/loongarch64/vmlinux.h" ) ;
1515/// The contents of `vmlinux.h` for `powerpc`.
1616pub static VMLINUX_powerpc : & [ u8 ] = include_bytes ! ( "../include/powerpc/vmlinux.h" ) ;
17+ /// The contents of `vmlinux.h` for `s390x`.
18+ pub static VMLINUX_s390x : & [ u8 ] = include_bytes ! ( "../include/s390x/vmlinux.h" ) ;
1719/// The contents of `vmlinux.h` for `riscv64`.
1820pub static VMLINUX_riscv64 : & [ u8 ] = include_bytes ! ( "../include/riscv64/vmlinux.h" ) ;
1921/// The contents of `vmlinux.h` for `x86`.
@@ -89,6 +91,10 @@ pub static VMLINUX: &[u8] = {
8991 VMLINUX_aarch64
9092 } else if eq ( arch, "loongarch64" ) {
9193 VMLINUX_loongarch64
94+ } else if eq ( arch, "riscv64" ) {
95+ VMLINUX_riscv64
96+ } else if eq ( arch, "s390x" ) {
97+ VMLINUX_s390x
9298 } else if eq ( arch, "powerpc" ) {
9399 VMLINUX_powerpc
94100 } else {
You can’t perform that action at this time.
0 commit comments