boot/arch/arm: use generic memcpy

Change-Id: I1816b4cf696cc19b94618f7e3b690895ccf4479c
Reviewed-on: https://review.haiku-os.org/c/haiku/+/4691
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
David Karoly 2021-11-04 20:38:43 +01:00 committed by waddlesplash
parent 2ab17547fa
commit 24c1b1812c

View File

@ -2,12 +2,8 @@ SubDir HAIKU_TOP src system boot arch arm ;
UsePrivateHeaders [ FDirName kernel platform $(TARGET_BOOT_PLATFORM) ] ;
# These must be recompiled due to differing wchar lengths in EFI
local librootArchSources =
arch_string.S
;
local librootGenericSources =
memcpy.c
memset.c
;
@ -52,9 +48,6 @@ for platform in [ MultiBootSubDirSetup u-boot efi ] {
SEARCH on [ FGristFiles $(kernelGenericDriverSources) ]
= [ FDirName $(HAIKU_TOP) src system kernel arch generic ] ;
SEARCH on [ FGristFiles $(librootArchSources) ]
= [ FDirName $(HAIKU_TOP) src system libroot posix string arch $(TARGET_ARCH) ] ;
SEARCH on [ FGristFiles $(librootGenericSources) ]
= [ FDirName $(HAIKU_TOP) src system libroot posix string arch generic ] ;
}