diff options
author | Helge Deller <deller@gmx.de> | 2013-06-29 07:31:24 -0400 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2013-07-09 16:09:20 -0400 |
commit | 594174d810a29982929cbb454dafee4a1498e4fb (patch) | |
tree | e542877ddebbc1039102e2a74fdba3654da7fd63 /arch/parisc/install.sh | |
parent | a83f58bcb24003b9de2364de7c829a263423ead7 (diff) |
parisc: switch to gzip-compressed vmlinuz kernel
The latest PA-RISC Boot Loader (palo) allows loading of gzip compressed
vmlinuz kernels. So let's now switch to build a vmlinuz file when we
build a palo boot image.
PALO version 1.9 (or higher) is required for this which is available at
git://git.kernel.org/pub/scm/linux/kernel/git/deller/palo.git
Signed-off-by: Helge Deller <deller@gmx.de>
Cc: <stable@vger.kernel.org> # 3.10
Diffstat (limited to 'arch/parisc/install.sh')
-rw-r--r-- | arch/parisc/install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/parisc/install.sh b/arch/parisc/install.sh index e593fc8d58bc..4da682b466d0 100644 --- a/arch/parisc/install.sh +++ b/arch/parisc/install.sh | |||
@@ -26,13 +26,13 @@ if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi | |||
26 | 26 | ||
27 | # Default install | 27 | # Default install |
28 | 28 | ||
29 | if [ -f $4/vmlinux ]; then | 29 | if [ -f $4/vmlinuz ]; then |
30 | mv $4/vmlinux $4/vmlinux.old | 30 | mv $4/vmlinuz $4/vmlinuz.old |
31 | fi | 31 | fi |
32 | 32 | ||
33 | if [ -f $4/System.map ]; then | 33 | if [ -f $4/System.map ]; then |
34 | mv $4/System.map $4/System.old | 34 | mv $4/System.map $4/System.old |
35 | fi | 35 | fi |
36 | 36 | ||
37 | cat $2 > $4/vmlinux | 37 | cat $2 > $4/vmlinuz |
38 | cp $3 $4/System.map | 38 | cp $3 $4/System.map |