31e7f49bd7
- Update to 3.16-rc5. OBS-URL: https://build.opensuse.org/request/show/241011 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kernel-source?expand=0&rev=240
11 lines
210 B
Bash
11 lines
210 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
vmlinux=$1
|
|
if test -e "$vmlinux" -a -e "$vmlinux.gz"; then
|
|
# Deliberately not using gzip -n; the vmlinux image has a predictable
|
|
# timestamp (bnc#880848#c20)
|
|
gzip -k -9 -f "$vmlinux"
|
|
fi
|