Remove ARM specific driver that duplicates the platform independent one. Rename x86 specific driver to make it unique. Added configuration options for random and non-random number generators. Change-Id: Ie1b277d2927cdfe877650ae09134db7c86becb76 Signed-off-by: Dmitriy Korovkin <dmitriy.korovkin@windriver.com>
14 lines
488 B
Makefile
14 lines
488 B
Makefile
EXTRA_CFLAGS +=-I$(srctree)/arch/x86/$(strip $(CONFIG_BSP_DIR))
|
|
EXTRA_AFLAGS +=-I$(srctree)/arch/x86/$(strip $(CONFIG_BSP_DIR))
|
|
|
|
obj-y = crt0.o sysFatalErrorHandler.o driver_static_irq_stubs.o
|
|
|
|
ifneq ($(CONFIG_CLFLUSH_INSTRUCTION_SUPPORTED),y)
|
|
obj-y += cache_s.o
|
|
endif
|
|
|
|
obj-$(CONFIG_LOAPIC) += systemApic.o
|
|
obj-$(CONFIG_CLFLUSH_INSTRUCTION_SUPPORTED) += cache.o
|
|
obj-$(CONFIG_PIC) += systemPic.o
|
|
obj-$(CONFIG_PIC) += i8259Boi.o
|
|
obj-$(CONFIG_X86_TSC_RANDOM_GENERATOR) += rand32-timestamp.o
|