Browse Source

linux26: adapted to produce and install vmlinuz for x86/x86-64 in newer versions

karasz/qt
Alejandro Mery 16 years ago
parent
commit
9d284ae017
  1. 4
      base/linux26/linux26.conf

4
base/linux26/linux26.conf

@ -47,7 +47,7 @@ main_lx() {
fi fi
case "$lx_cpu" in case "$lx_cpu" in
i386|x86_64) x86|i386|x86_64)
var_append makeopt ' ' bzImage ;; var_append makeopt ' ' bzImage ;;
mips) mips)
var_append makeopt ' ' vmlinux.ecoff ;; var_append makeopt ' ' vmlinux.ecoff ;;
@ -69,7 +69,7 @@ main_lx() {
# for debugging with oprofile, also used to boot on some arches # for debugging with oprofile, also used to boot on some arches
cp -vf vmlinux $root/boot/vmlinux_${lx_kernelrelease} cp -vf vmlinux $root/boot/vmlinux_${lx_kernelrelease}
case "$lx_cpu" in case "$lx_cpu" in
i386|x86_64) x86|i386|x86_64)
cp -vf arch/${lx_cpu}/boot/bzImage $root/boot/vmlinuz_${lx_kernelrelease} cp -vf arch/${lx_cpu}/boot/bzImage $root/boot/vmlinuz_${lx_kernelrelease}
;; ;;
alpha) alpha)

Loading…
Cancel
Save