diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2014-05-01 04:46:36 +0400 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2014-05-05 20:04:10 +0400 |
commit | 55b441be5cd600bf645a01b14900880a09941d4c (patch) | |
tree | 462984c5af1ab9cd28f3d70113a999620eebf431 /arch/xtensa/platforms | |
parent | cfe8255f0afcf5d2d1dbfa093223cafe38773fa7 (diff) | |
download | linux-55b441be5cd600bf645a01b14900880a09941d4c.tar.xz |
xtensa: ISS: don't depend on CONFIG_TTY
Build console support only when CONFIG_TTY is selected.
This restores ISS as the default platform for allnoconfig builds.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/platforms')
-rw-r--r-- | arch/xtensa/platforms/iss/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/xtensa/platforms/iss/Makefile b/arch/xtensa/platforms/iss/Makefile index d2369b799c50..b3e89291cfba 100644 --- a/arch/xtensa/platforms/iss/Makefile +++ b/arch/xtensa/platforms/iss/Makefile @@ -4,6 +4,7 @@ # "prom monitor" library routines under Linux. # -obj-y = console.o setup.o +obj-y = setup.o +obj-$(CONFIG_TTY) += console.o obj-$(CONFIG_NET) += network.o obj-$(CONFIG_BLK_DEV_SIMDISK) += simdisk.o |