mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2026-01-19 07:30:08 +00:00
The framebuffer scaling code was not tested on armv7 due to no current platforms making use of simplefb. Turns out the compiler wants a set of aeabi helpers for divisions, not present due to the bare metal nature of the bootloader. Satisfy this with empty stubs.
21 lines
371 B
Makefile
21 lines
371 B
Makefile
lib-y += compiler-rt.o
|
|
|
|
# simplefb
|
|
lib-$(CONFIG_SIMPLE_FB) += simplefb/simplefb.o
|
|
|
|
# debug
|
|
lib-y += debug/debug.o
|
|
|
|
# unic (neatlibc still temporarily resides)
|
|
lib-y += unic/string.o
|
|
|
|
lib-$(CONFIG_LIBFDT) += \
|
|
libfdt/fdt.o \
|
|
libfdt/fdt_ro.o \
|
|
libfdt/fdt_rw.o \
|
|
libfdt/fdt_wip.o \
|
|
libfdt/fdt_sw.o \
|
|
libfdt/fdt_strerror.o
|
|
|
|
ccflags-y += -I$(srctree)/include/lib/libfdt
|