From 6ca4ac0978ea0ac800eb80ca9a74e39530ad8607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 24 May 2012 21:16:56 +0200 Subject: [PATCH] PPC: Add some kernel asm helpers to the bootloader * get/set_msr() will be useful for U-Boot. --- src/system/boot/arch/ppc/Jamfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system/boot/arch/ppc/Jamfile b/src/system/boot/arch/ppc/Jamfile index c2b817b54c..62c625ed71 100644 --- a/src/system/boot/arch/ppc/Jamfile +++ b/src/system/boot/arch/ppc/Jamfile @@ -19,13 +19,14 @@ KernelMergeObject boot_arch_$(TARGET_ARCH).o : debug_uart_8250.cpp arch_uart_8250.cpp arch_elf.cpp + arch_cpu_asm.S : # additional flags : $(kernelArchObjects) $(kernelLibArchObjects) ; -SEARCH on [ FGristFiles arch_elf.cpp arch_uart_8250.cpp ] +SEARCH on [ FGristFiles arch_elf.cpp arch_uart_8250.cpp arch_cpu_asm.S ] = [ FDirName $(HAIKU_TOP) src system kernel arch $(TARGET_ARCH) ] ; SEARCH on [ FGristFiles debug_uart_8250.cpp ]