From 9d284ae01784568e0f5ed90afd4c3609258efb19 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Sun, 30 Nov 2008 01:52:48 +0200 Subject: [PATCH] linux26: adapted to produce and install vmlinuz for x86/x86-64 in newer versions --- base/linux26/linux26.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/linux26/linux26.conf b/base/linux26/linux26.conf index bf48c15a9..5649e2574 100644 --- a/base/linux26/linux26.conf +++ b/base/linux26/linux26.conf @@ -47,7 +47,7 @@ main_lx() { fi case "$lx_cpu" in - i386|x86_64) + x86|i386|x86_64) var_append makeopt ' ' bzImage ;; mips) var_append makeopt ' ' vmlinux.ecoff ;; @@ -69,7 +69,7 @@ main_lx() { # for debugging with oprofile, also used to boot on some arches cp -vf vmlinux $root/boot/vmlinux_${lx_kernelrelease} case "$lx_cpu" in - i386|x86_64) + x86|i386|x86_64) cp -vf arch/${lx_cpu}/boot/bzImage $root/boot/vmlinuz_${lx_kernelrelease} ;; alpha)