mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Fix an aout-to-elf upgrade failure. Don't let the kernel Makefile
think it's in ELF mode and upgrading /kernel.
This commit is contained in:
parent
7c7545e182
commit
89096bf0ef
1 changed files with 3 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# $Id: Makefile.upgrade,v 1.8 1999/01/07 06:30:14 peter Exp $
|
||||
# $Id: Makefile.upgrade,v 1.9 1999/01/07 07:20:41 peter Exp $
|
||||
#
|
||||
# This makefile contains rules for preforming upgrades that are outside
|
||||
# the scope of the normal build world process.
|
||||
|
|
@ -291,7 +291,8 @@ ${MAKEOBJDIRPREFIX}/do_install_kernel_reboot :
|
|||
@echo "--------------------------------------------------------------"
|
||||
@echo " Installing a new GENERICupgrade kernel"
|
||||
@echo "--------------------------------------------------------------"
|
||||
@cd ${.CURDIR}/sys/compile/GENERICupgrade; make install
|
||||
@cd ${.CURDIR}/sys/compile/GENERICupgrade; \
|
||||
OBJFORMAT=aout make KERNFORMAT=aout install
|
||||
@echo
|
||||
@echo "--------------------------------------------------------------"
|
||||
@echo " Rebooting......."
|
||||
|
|
|
|||
Loading…
Reference in a new issue