diff options
| author | Michael S. Tsirkin | 2015-07-01 11:42:18 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2015-07-08 09:09:56 +0200 |
| commit | 412a82457ef54821362ba27804e24a92fce09761 (patch) | |
| tree | a199e1967b95ba41efef836b9abdc5546d5f4055 /scripts | |
| parent | virtio_net: reuse constants from linux (diff) | |
| download | qemu-412a82457ef54821362ba27804e24a92fce09761.tar.gz qemu-412a82457ef54821362ba27804e24a92fce09761.tar.xz qemu-412a82457ef54821362ba27804e24a92fce09761.zip | |
pci_regs.h: import from linux
It seems to make sense to import pci_regs.h from linux:
why maintain our own?
As a first step, move the header to standard-headers,
and add it to the update script.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'scripts')
| -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 baf4220b84..47378d93d4 100755 --- a/scripts/update-linux-headers.sh +++ b/scripts/update-linux-headers.sh @@ -31,7 +31,7 @@ fi cp_virtio() { from=$1 to=$2 - virtio=$(find "$from" -name '*virtio*h' -o -name "input.h") + virtio=$(find "$from" -name '*virtio*h' -o -name "input.h" -o -name "pci_regs.h") if [ "$virtio" ]; then rm -rf "$to" mkdir -p "$to" |
