From 08ee7445f125243f852441da16e79496ab8a6318 Mon Sep 17 00:00:00 2001 From: Mark Cave-Ayland Date: Sat, 27 Mar 2010 11:59:43 +0000 Subject: [PATCH] Fix a couple of minor omissions (and an incorrect switch-arch alteration) from the previous commit. git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@713 f158a5a8-5612-0410-a976-696ce0be7e32 --- arch/sparc32/boot.h | 3 --- arch/sparc64/boot.h | 3 --- config/scripts/switch-arch | 3 +-- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/arch/sparc32/boot.h b/arch/sparc32/boot.h index 646b795..fd8bf75 100644 --- a/arch/sparc32/boot.h +++ b/arch/sparc32/boot.h @@ -6,9 +6,6 @@ * the copyright and warranty status of this work. */ -// forthload.c -int forth_load(const char *filename); - // linux_load.c int linux_load(struct sys_info *info, const char *file, const char *cmdline); diff --git a/arch/sparc64/boot.h b/arch/sparc64/boot.h index a46dd4e..9f4d6bc 100644 --- a/arch/sparc64/boot.h +++ b/arch/sparc64/boot.h @@ -6,9 +6,6 @@ * the copyright and warranty status of this work. */ -// forthload.c -int forth_load(const char *filename); - // linux_load.c int linux_load(struct sys_info *info, const char *file, const char *cmdline); diff --git a/config/scripts/switch-arch b/config/scripts/switch-arch index 1d93016..c145e86 100755 --- a/config/scripts/switch-arch +++ b/config/scripts/switch-arch @@ -150,8 +150,7 @@ for RULES_ARCH in $*; do ;; x86) - #select_prefix i486 - select_prefix x86_64 + select_prefix i486 CFLAGS="-fno-builtin -m32" AS_FLAGS="-Wa,-32" ;;