On Mon, May 27, 2024 at 08:01:26AM +0200, Thomas Huth wrote:
> When running the update-linx-headers.sh script, it currently fails with:
> 
> scripts/update-linux-headers.sh: line 73: 
> .../qemu/standard-headers/asm-x86/setup_data.h: No such file or directory
> 
> The "include" folder is obviously missing here - no clue how this could
> have worked before?
> 
> Fixes: 66210a1a30 ("scripts/update-linux-headers: Add setup_data.h to import 
> list")
> Signed-off-by: Thomas Huth <th...@redhat.com>

Tested-by: Michael Roth <michael.r...@amd.com>

> ---
>  scripts/update-linux-headers.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/update-linux-headers.sh b/scripts/update-linux-headers.sh
> index fbf7e119bc..23afe8c08a 100755
> --- a/scripts/update-linux-headers.sh
> +++ b/scripts/update-linux-headers.sh
> @@ -159,7 +159,7 @@ for arch in $ARCHLIST; do
>          cp_portable "$hdrdir/bootparam.h" \
>                      "$output/include/standard-headers/asm-$arch"
>          cp_portable "$hdrdir/include/asm/setup_data.h" \
> -                    "$output/standard-headers/asm-x86"
> +                    "$output/include/standard-headers/asm-x86"
>      fi
>      if [ $arch = riscv ]; then
>          cp "$hdrdir/include/asm/ptrace.h" "$output/linux-headers/asm-riscv/"
> -- 
> 2.45.1
> 

Reply via email to