1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-09-25 12:42:05 +00:00
Files
os-kernel/images/10-kernel/prebuild.sh
2017-05-04 02:34:10 +00:00

15 lines
494 B
Bash
Executable File

#!/bin/bash
set -ex
# linux-${KERNEL_VERSION}-x86.tar
tar -xf /source/dist/kernel/linux-${KERNEL_VERSION}-x86.tar.gz ./boot/vmlinuz-${KERNEL_VERSION} ./boot/System.map-${KERNEL_VERSION}
mv ./boot/vmlinuz-${KERNEL_VERSION} ./images/10-kernel/kernel
mv ./boot/System.map-${KERNEL_VERSION} ./images/10-kernel/System.map
rmdir boot
cp /source/dist/kernel/linux-${KERNEL_VERSION}-x86.tar.gz ./images/10-kernel/kernel.tar.gz
gunzip -f ./images/10-kernel/kernel.tar.gz
ls -lah ./images/10-kernel