diff options
author | Rorie Reyes <rreyes@linux.ibm.com> | 2025-04-25 01:23:56 -0400 |
---|---|---|
committer | Cédric Le Goater <clg@redhat.com> | 2025-05-09 12:42:27 +0200 |
commit | f4df9f261866452a842762b7bad6031d3f5f7c35 (patch) | |
tree | b025b238cc19265e6d182b33a2350ae1d76bcd3f | |
parent | 7969cf4639794e0af84862a269daac72adcfb554 (diff) | |
download | qemu-f4df9f261866452a842762b7bad6031d3f5f7c35.zip qemu-f4df9f261866452a842762b7bad6031d3f5f7c35.tar.gz qemu-f4df9f261866452a842762b7bad6031d3f5f7c35.tar.bz2 |
linux-header: update-linux-header script changes
Kernel commit 8a141be3233a changed from using
ASSEMBLY to ASSEMBLER
Updated the update-linux-header script to match
Signed-off-by: Rorie Reyes <rreyes@linux.ibm.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Link: https://lore.kernel.org/qemu-devel/20250425052401.8287-2-rreyes@linux.ibm.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
-rwxr-xr-x | scripts/update-linux-headers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh index 8913e4f..b43b8ef 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -177,7 +177,7 @@ EOF # Remove everything except the macros from bootparam.h avoiding the # unnecessary import of several video/ist/etc headers - sed -e '/__ASSEMBLY__/,/__ASSEMBLY__/d' \ + sed -e '/__ASSEMBLER__/,/__ASSEMBLER__/d' \ "$hdrdir/include/asm/bootparam.h" > "$hdrdir/bootparam.h" cp_portable "$hdrdir/bootparam.h" \ "$output/include/standard-headers/asm-$arch" |