| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | #!/bin/sh -e
 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Update Linux kernel headers QEMU requires from a specified kernel tree. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Copyright (C) 2011 Siemens AG | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Authors: | 
					
						
							|  |  |  | #  Jan Kiszka        <jan.kiszka@siemens.com> | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This work is licensed under the terms of the GNU GPL version 2. | 
					
						
							|  |  |  | # See the COPYING file in the top-level directory. | 
					
						
							| 
									
										
										
										
											2021-12-09 19:45:32 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # The script will copy the headers into two target folders: | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # - linux-headers/ for files that are required for compiling for a | 
					
						
							|  |  |  | #   Linux host.  Generally we have these so we can use kernel structs | 
					
						
							|  |  |  | #   and defines that are more recent than the headers that might be | 
					
						
							|  |  |  | #   installed on the host system.  Usually this script can do simple | 
					
						
							|  |  |  | #   file copies for these headers. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # - include/standard-headers/ for files that are used for guest | 
					
						
							|  |  |  | #   device emulation and are required on all hosts.  For instance, we | 
					
						
							|  |  |  | #   get our definitions of the virtio structures from the Linux | 
					
						
							|  |  |  | #   kernel headers, but we need those definitions regardless of which | 
					
						
							|  |  |  | #   host OS we are building for.  This script has to be careful to | 
					
						
							|  |  |  | #   sanitize the headers to remove any use of Linux-specifics such as | 
					
						
							|  |  |  | #   types like "__u64".  This work is done in the cp_portable function. | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-16 15:23:33 +02:00
										 |  |  | tmpdir=$(mktemp -d) | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | linux="$1" | 
					
						
							|  |  |  | output="$2" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ -z "$linux" ] || ! [ -d "$linux" ]; then | 
					
						
							|  |  |  |     cat << EOF | 
					
						
							|  |  |  | usage: update-kernel-headers.sh LINUX_PATH [OUTPUT_PATH] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | LINUX_PATH      Linux kernel directory to obtain the headers from | 
					
						
							|  |  |  | OUTPUT_PATH     output directory, usually the qemu source tree (default: $PWD) | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  |     exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ -z "$output" ]; then | 
					
						
							|  |  |  |     output="$PWD" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  | cp_portable() { | 
					
						
							|  |  |  |     f=$1 | 
					
						
							| 
									
										
										
										
											2015-02-16 22:35:25 +01:00
										 |  |  |     to=$2 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |     if | 
					
						
							|  |  |  |         grep '#include' "$f" | grep -v -e 'linux/virtio' \
 | 
					
						
							|  |  |  |                                      -e 'linux/types' \
 | 
					
						
							| 
									
										
										
										
											2021-05-26 16:14:17 -07:00
										 |  |  |                                      -e 'linux/ioctl' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |                                      -e 'stdint' \
 | 
					
						
							|  |  |  |                                      -e 'linux/if_ether' \
 | 
					
						
							| 
									
										
										
										
											2015-12-15 15:00:27 +01:00
										 |  |  |                                      -e 'input-event-codes' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |                                      -e 'sys/' \
 | 
					
						
							| 
									
										
										
										
											2018-03-13 11:17:28 -06:00
										 |  |  |                                      -e 'drm.h' \
 | 
					
						
							| 
									
										
										
										
											2018-03-07 22:25:39 -05:00
										 |  |  |                                      -e 'limits' \
 | 
					
						
							| 
									
										
										
										
											2021-01-04 21:20:55 +01:00
										 |  |  |                                      -e 'linux/const' \
 | 
					
						
							| 
									
										
										
										
											2018-03-07 22:25:39 -05:00
										 |  |  |                                      -e 'linux/kernel' \
 | 
					
						
							|  |  |  |                                      -e 'linux/sysinfo' \
 | 
					
						
							| 
									
										
										
										
											2024-02-18 23:35:02 -06:00
										 |  |  |                                      -e 'asm/setup_data.h' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |                                      > /dev/null | 
					
						
							|  |  |  |     then | 
					
						
							|  |  |  |         echo "Unexpected #include in input file $f". | 
					
						
							|  |  |  |         exit 2 | 
					
						
							| 
									
										
										
										
											2015-02-16 22:35:25 +01:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     header=$(basename "$f"); | 
					
						
							| 
									
										
										
										
											2018-05-25 14:27:51 +01:00
										 |  |  |     sed -e 's/__aligned_u64/__u64 __attribute__((aligned(8)))/g' \
 | 
					
						
							|  |  |  |         -e 's/__u\([0-9][0-9]*\)/uint\1_t/g' \
 | 
					
						
							| 
									
										
										
										
											2018-02-14 19:35:27 +02:00
										 |  |  |         -e 's/u\([0-9][0-9]*\)/uint\1_t/g' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |         -e 's/__s\([0-9][0-9]*\)/int\1_t/g' \
 | 
					
						
							|  |  |  |         -e 's/__le\([0-9][0-9]*\)/uint\1_t/g' \
 | 
					
						
							|  |  |  |         -e 's/__be\([0-9][0-9]*\)/uint\1_t/g' \
 | 
					
						
							| 
									
										
										
										
											2015-12-15 15:00:27 +01:00
										 |  |  |         -e 's/"\(input-event-codes\.h\)"/"standard-headers\/linux\/\1"/' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |         -e 's/<linux\/\([^>]*\)>/"standard-headers\/linux\/\1"/' \
 | 
					
						
							| 
									
										
										
										
											2024-02-18 23:35:02 -06:00
										 |  |  |         -e 's/<asm\/\([^>]*\)>/"standard-headers\/asm-'$arch'\/\1"/' \
 | 
					
						
							| 
									
										
										
										
											2017-01-13 18:18:35 +02:00
										 |  |  |         -e 's/__bitwise//' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |         -e 's/__attribute__((packed))/QEMU_PACKED/' \
 | 
					
						
							|  |  |  |         -e 's/__inline__/inline/' \
 | 
					
						
							| 
									
										
										
										
											2018-03-13 09:38:18 +01:00
										 |  |  |         -e 's/__BITS_PER_LONG/HOST_LONG_BITS/' \
 | 
					
						
							| 
									
										
										
										
											2018-03-13 11:17:28 -06:00
										 |  |  |         -e '/\"drm.h\"/d' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |         -e '/sys\/ioctl.h/d' \
 | 
					
						
							| 
									
										
										
										
											2021-05-26 16:14:17 -07:00
										 |  |  |         -e '/linux\/ioctl.h/d' \
 | 
					
						
							| 
									
										
										
										
											2015-10-08 18:11:39 +02:00
										 |  |  |         -e 's/SW_MAX/SW_MAX_/' \
 | 
					
						
							| 
									
										
										
										
											2018-02-14 19:35:27 +02:00
										 |  |  |         -e 's/atomic_t/int/' \
 | 
					
						
							| 
									
										
										
										
											2018-03-07 22:25:39 -05:00
										 |  |  |         -e 's/__kernel_long_t/long/' \
 | 
					
						
							|  |  |  |         -e 's/__kernel_ulong_t/unsigned long/' \
 | 
					
						
							|  |  |  |         -e 's/struct ethhdr/struct eth_header/' \
 | 
					
						
							|  |  |  |         -e '/\#define _LINUX_ETHTOOL_H/a \\n\#include "net/eth.h"' \
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |         "$f" > "$to/$header"; | 
					
						
							| 
									
										
										
										
											2015-02-16 22:35:25 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-18 11:11:09 +01:00
										 |  |  | # This will pick up non-directories too (eg "Kconfig") but we will | 
					
						
							|  |  |  | # ignore them in the next loop. | 
					
						
							|  |  |  | ARCHLIST=$(cd "$linux/arch" && echo *) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | for arch in $ARCHLIST; do | 
					
						
							|  |  |  |     # Discard anything which isn't a KVM-supporting architecture | 
					
						
							| 
									
										
										
										
											2012-10-22 12:54:39 +01:00
										 |  |  |     if ! [ -e "$linux/arch/$arch/include/asm/kvm.h" ] && | 
					
						
							|  |  |  |         ! [ -e "$linux/arch/$arch/include/uapi/asm/kvm.h" ] ; then | 
					
						
							| 
									
										
										
										
											2012-07-18 11:11:09 +01:00
										 |  |  |         continue | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 13:29:19 +01:00
										 |  |  |     if [ "$arch" = x86 ]; then | 
					
						
							|  |  |  |         arch_var=SRCARCH | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         arch_var=ARCH | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     make -C "$linux" INSTALL_HDR_PATH="$tmpdir" $arch_var=$arch headers_install | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     rm -rf "$output/linux-headers/asm-$arch" | 
					
						
							|  |  |  |     mkdir -p "$output/linux-headers/asm-$arch" | 
					
						
							| 
									
										
										
										
											2019-02-08 18:10:49 +08:00
										 |  |  |     for header in kvm.h unistd.h bitsperlong.h mman.h; do | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  |         cp "$tmpdir/include/asm/$header" "$output/linux-headers/asm-$arch" | 
					
						
							|  |  |  |     done | 
					
						
							| 
									
										
										
										
											2018-03-20 23:01:04 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if [ $arch = mips ]; then | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/sgidefs.h" "$output/linux-headers/asm-mips/" | 
					
						
							| 
									
										
										
										
											2019-01-04 09:27:30 +01:00
										 |  |  |         cp "$tmpdir/include/asm/unistd_o32.h" "$output/linux-headers/asm-mips/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_n32.h" "$output/linux-headers/asm-mips/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_n64.h" "$output/linux-headers/asm-mips/" | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |     if [ $arch = powerpc ]; then | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-powerpc/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-powerpc/" | 
					
						
							| 
									
										
										
										
											2018-03-20 23:01:04 +02:00
										 |  |  |     fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |     rm -rf "$output/include/standard-headers/asm-$arch" | 
					
						
							|  |  |  |     mkdir -p "$output/include/standard-headers/asm-$arch" | 
					
						
							|  |  |  |     if [ $arch = s390 ]; then | 
					
						
							|  |  |  |         cp_portable "$tmpdir/include/asm/virtio-ccw.h" "$output/include/standard-headers/asm-s390/" | 
					
						
							| 
									
										
										
										
											2018-03-13 09:38:18 +01:00
										 |  |  |         cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-s390/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-s390/" | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2017-02-21 13:29:19 +01:00
										 |  |  |     if [ $arch = arm ]; then | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd-eabi.h" "$output/linux-headers/asm-arm/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd-oabi.h" "$output/linux-headers/asm-arm/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd-common.h" "$output/linux-headers/asm-arm/" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2019-05-21 16:56:30 +02:00
										 |  |  |     if [ $arch = arm64 ]; then | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/sve_context.h" "$output/linux-headers/asm-arm64/" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |     if [ $arch = x86 ]; then | 
					
						
							| 
									
										
										
										
											2015-10-09 17:17:17 +02:00
										 |  |  |         cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-x86/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_x32.h" "$output/linux-headers/asm-x86/" | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-x86/" | 
					
						
							| 
									
										
										
										
											2018-04-17 21:42:21 +03:00
										 |  |  |         cp_portable "$tmpdir/include/asm/kvm_para.h" "$output/include/standard-headers/asm-$arch" | 
					
						
							| 
									
										
										
										
											2019-01-17 20:49:03 +08:00
										 |  |  |         # Remove everything except the macros from bootparam.h avoiding the | 
					
						
							|  |  |  |         # unnecessary import of several video/ist/etc headers | 
					
						
							|  |  |  |         sed -e '/__ASSEMBLY__/,/__ASSEMBLY__/d' \
 | 
					
						
							|  |  |  |                "$tmpdir/include/asm/bootparam.h" > "$tmpdir/bootparam.h" | 
					
						
							|  |  |  |         cp_portable "$tmpdir/bootparam.h" \
 | 
					
						
							|  |  |  |                     "$output/include/standard-headers/asm-$arch" | 
					
						
							| 
									
										
										
										
											2024-02-18 23:35:02 -06:00
										 |  |  |         cp_portable "$tmpdir/include/asm/setup_data.h" \
 | 
					
						
							|  |  |  |                     "$output/standard-headers/asm-x86" | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |     fi | 
					
						
							| 
									
										
										
										
											2023-12-18 17:43:19 -03:00
										 |  |  |     if [ $arch = riscv ]; then | 
					
						
							|  |  |  |         cp "$tmpdir/include/asm/ptrace.h" "$output/linux-headers/asm-riscv/" | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | done | 
					
						
							| 
									
										
										
										
											2024-02-18 23:35:02 -06:00
										 |  |  | arch= | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | rm -rf "$output/linux-headers/linux" | 
					
						
							|  |  |  | mkdir -p "$output/linux-headers/linux" | 
					
						
							| 
									
										
										
										
											2023-04-05 19:21:08 +02:00
										 |  |  | for header in const.h stddef.h kvm.h vfio.h vfio_ccw.h vfio_zdev.h vhost.h \
 | 
					
						
							| 
									
										
										
										
											2023-10-09 11:09:03 +02:00
										 |  |  |               psci.h psp-sev.h userfaultfd.h memfd.h mman.h nvme_ioctl.h \
 | 
					
						
							| 
									
										
										
										
											2024-02-21 10:51:38 -06:00
										 |  |  |               vduse.h iommufd.h bits.h; do | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  |     cp "$tmpdir/include/linux/$header" "$output/linux-headers/linux" | 
					
						
							|  |  |  | done | 
					
						
							| 
									
										
										
										
											2018-04-17 21:42:21 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-20 23:01:04 +02:00
										 |  |  | rm -rf "$output/linux-headers/asm-generic" | 
					
						
							|  |  |  | mkdir -p "$output/linux-headers/asm-generic" | 
					
						
							| 
									
										
										
										
											2019-02-08 18:10:49 +08:00
										 |  |  | for header in unistd.h bitsperlong.h mman-common.h mman.h hugetlb_encode.h; do | 
					
						
							| 
									
										
										
										
											2018-03-20 23:01:04 +02:00
										 |  |  |     cp "$tmpdir/include/asm-generic/$header" "$output/linux-headers/asm-generic" | 
					
						
							|  |  |  | done | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | if [ -L "$linux/source" ]; then | 
					
						
							|  |  |  |     cp "$linux/source/COPYING" "$output/linux-headers" | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |     cp "$linux/COPYING" "$output/linux-headers" | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-25 14:27:52 +01:00
										 |  |  | # Recent kernel sources split the copyright/license info into multiple | 
					
						
							|  |  |  | # files, which we need to copy. This set of licenses is the set that | 
					
						
							|  |  |  | # are referred to by SPDX lines in the headers we currently copy. | 
					
						
							|  |  |  | # We don't copy the Documentation/process/license-rules.rst which | 
					
						
							|  |  |  | # is also referred to by COPYING, since it's explanatory rather than license. | 
					
						
							|  |  |  | if [ -d "$linux/LICENSES" ]; then | 
					
						
							|  |  |  |     mkdir -p "$output/linux-headers/LICENSES/preferred" \
 | 
					
						
							|  |  |  |              "$output/linux-headers/LICENSES/exceptions" | 
					
						
							|  |  |  |     for l in preferred/GPL-2.0 preferred/BSD-2-Clause preferred/BSD-3-Clause \
 | 
					
						
							|  |  |  |              exceptions/Linux-syscall-note; do | 
					
						
							|  |  |  |         cp "$linux/LICENSES/$l" "$output/linux-headers/LICENSES/$l" | 
					
						
							|  |  |  |     done | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-16 22:36:32 +01:00
										 |  |  | cat <<EOF >$output/linux-headers/linux/virtio_config.h | 
					
						
							|  |  |  | #include "standard-headers/linux/virtio_config.h" | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | cat <<EOF >$output/linux-headers/linux/virtio_ring.h | 
					
						
							|  |  |  | #include "standard-headers/linux/virtio_ring.h" | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2019-01-04 09:27:30 +01:00
										 |  |  | cat <<EOF >$output/linux-headers/linux/vhost_types.h | 
					
						
							|  |  |  | #include "standard-headers/linux/vhost_types.h" | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2015-02-16 22:35:25 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  | rm -rf "$output/include/standard-headers/linux" | 
					
						
							|  |  |  | mkdir -p "$output/include/standard-headers/linux" | 
					
						
							| 
									
										
										
										
											2018-08-17 17:59:09 +02:00
										 |  |  | for i in "$tmpdir"/include/linux/*virtio*.h \
 | 
					
						
							|  |  |  |          "$tmpdir/include/linux/qemu_fw_cfg.h" \
 | 
					
						
							| 
									
										
										
										
											2019-09-30 14:01:47 +01:00
										 |  |  |          "$tmpdir/include/linux/fuse.h" \
 | 
					
						
							| 
									
										
										
										
											2018-08-17 17:59:09 +02:00
										 |  |  |          "$tmpdir/include/linux/input.h" \
 | 
					
						
							| 
									
										
										
										
											2015-12-15 15:00:27 +01:00
										 |  |  |          "$tmpdir/include/linux/input-event-codes.h" \
 | 
					
						
							| 
									
										
										
										
											2021-05-26 16:14:17 -07:00
										 |  |  |          "$tmpdir/include/linux/udmabuf.h" \
 | 
					
						
							| 
									
										
										
										
											2018-03-07 22:25:39 -05:00
										 |  |  |          "$tmpdir/include/linux/pci_regs.h" \
 | 
					
						
							| 
									
										
										
										
											2021-01-04 21:20:55 +01:00
										 |  |  |          "$tmpdir/include/linux/ethtool.h" \
 | 
					
						
							|  |  |  |          "$tmpdir/include/linux/const.h" \
 | 
					
						
							|  |  |  |          "$tmpdir/include/linux/kernel.h" \
 | 
					
						
							| 
									
										
										
										
											2019-01-04 09:27:30 +01:00
										 |  |  |          "$tmpdir/include/linux/vhost_types.h" \
 | 
					
						
							| 
									
										
										
										
											2022-02-21 20:27:16 +08:00
										 |  |  |          "$tmpdir/include/linux/sysinfo.h" \
 | 
					
						
							|  |  |  |          "$tmpdir/include/misc/pvpanic.h"; do | 
					
						
							| 
									
										
										
										
											2015-09-09 15:25:52 +02:00
										 |  |  |     cp_portable "$i" "$output/include/standard-headers/linux" | 
					
						
							|  |  |  | done | 
					
						
							| 
									
										
										
										
											2018-03-13 11:17:28 -06:00
										 |  |  | mkdir -p "$output/include/standard-headers/drm" | 
					
						
							|  |  |  | cp_portable "$tmpdir/include/drm/drm_fourcc.h" \
 | 
					
						
							|  |  |  |             "$output/include/standard-headers/drm" | 
					
						
							| 
									
										
										
										
											2015-02-16 22:35:25 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | cat <<EOF >$output/include/standard-headers/linux/types.h | 
					
						
							| 
									
										
										
										
											2016-02-23 14:18:31 +00:00
										 |  |  | /* For QEMU all types are already defined via osdep.h, so this | 
					
						
							|  |  |  |  * header does not need to do anything. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-02-16 22:35:25 +01:00
										 |  |  | EOF | 
					
						
							|  |  |  | cat <<EOF >$output/include/standard-headers/linux/if_ether.h | 
					
						
							|  |  |  | #define ETH_ALEN    6 | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 18:22:17 +02:00
										 |  |  | rm -rf "$tmpdir" |