diff mbox

[1/1] barebox: fix compilation on x86-64 architecture

Message ID 1425480646-30970-1-git-send-email-fabienlahoudere.pro@gmail.com
State Accepted
Headers show

Commit Message

Lahoudere Fabien March 4, 2015, 2:50 p.m. UTC
Barebox uses KERNEL_ARCH to derive BAREBOX_ARCH, but doesn't
currently handle the case of the x86-64 architecture. In this
case KERNEL_ARCH is x86_64, but BAREBOX_ARCH should be x86
nonetheless.

Signed-off-by: Fabien Lahoudere <fabienlahoudere.pro@gmail.com>
---
 boot/barebox/barebox.mk | 2 ++
 1 file changed, 2 insertions(+)

Comments

Thomas Petazzoni March 4, 2015, 9:11 p.m. UTC | #1
Dear Fabien Lahoudere,

On Wed,  4 Mar 2015 15:50:46 +0100, Fabien Lahoudere wrote:
> Barebox uses KERNEL_ARCH to derive BAREBOX_ARCH, but doesn't
> currently handle the case of the x86-64 architecture. In this
> case KERNEL_ARCH is x86_64, but BAREBOX_ARCH should be x86
> nonetheless.
> 
> Signed-off-by: Fabien Lahoudere <fabienlahoudere.pro@gmail.com>

Applied, thanks!

Thomas
diff mbox

Patch

diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk
index 0fb7cec..626ff9a 100644
--- a/boot/barebox/barebox.mk
+++ b/boot/barebox/barebox.mk
@@ -41,6 +41,8 @@  endif
 
 ifeq ($(KERNEL_ARCH),i386)
 BAREBOX_ARCH = x86
+else ifeq ($(KERNEL_ARCH),x86_64)
+BAREBOX_ARCH = x86
 else ifeq ($(KERNEL_ARCH),powerpc)
 BAREBOX_ARCH = ppc
 else