diff options
author | David Müller (ELSOFT AG) <d.mueller@elsoft.ch> | 2010-12-03 05:12:50 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-19 17:52:44 +0100 |
commit | 9fd6826611d345a780217631defb535254e7953c (patch) | |
tree | ff6e7eaf0b0cf72976938773fe9d34f6a4bc4ba1 /arch/arm/cpu/arm920t/s3c24x0/Makefile | |
parent | df65a3fe3504930d5a89699e9903554f4605b098 (diff) |
add print_cpuinfo to s3c24x0
Hello
This patch adds support for "print_cpuinfo" on Samsung s3c24x0
based targets. If activated by "#define CONFIG_DISPLAY_CPUINFO", the
chip ID and the 3 main cpu frequencies will be displayed.
Dave
Signed-off-by: David Müller <d.mueller@elsoft.ch>
Diffstat (limited to 'arch/arm/cpu/arm920t/s3c24x0/Makefile')
-rw-r--r-- | arch/arm/cpu/arm920t/s3c24x0/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm920t/s3c24x0/Makefile b/arch/arm/cpu/arm920t/s3c24x0/Makefile index bd53724b51..0029700e44 100644 --- a/arch/arm/cpu/arm920t/s3c24x0/Makefile +++ b/arch/arm/cpu/arm920t/s3c24x0/Makefile @@ -26,6 +26,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(SOC).o COBJS-$(CONFIG_USE_IRQ) += interrupts.o +COBJS-$(CONFIG_DISPLAY_CPUINFO) += cpu_info.o COBJS-y += speed.o COBJS-y += timer.o COBJS-y += usb.o |