https://github.com/torvalds/linux
Revision a814917058a63978ecd9fbefe4f88e3fc1576a79 authored by Russell King on 27 August 2008, 13:29:40 UTC, committed by Russell King on 27 August 2008, 15:15:23 UTC
Taken from omap 97b705ad835f1481270c4b67b402d6e37fa8ad15:
  ARM: OMAP: Misc compile fixes after syncing with mainline

  Also fix 2430 smc91x to use IRQ_LOWLEVEL.

  Signed-off-by: Tony Lindgren <tony@atomide.com>

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent 9c2d015
Raw File
Tip revision: a814917058a63978ecd9fbefe4f88e3fc1576a79 authored by Russell King on 27 August 2008, 13:29:40 UTC
[ARM] OMAP: Fix 2430 SMC91x ethernet IRQ
Tip revision: a814917
Makefile
###
# scripts contains sources for various helper programs used throughout
# the kernel for the build process.
# ---------------------------------------------------------------------------
# kallsyms:      Find all symbols in vmlinux
# pnmttologo:    Convert pnm files to logo files
# conmakehash:   Create chartable
# conmakehash:	 Create arrays for initializing the kernel console tables

hostprogs-$(CONFIG_KALLSYMS)     += kallsyms
hostprogs-$(CONFIG_LOGO)         += pnmtologo
hostprogs-$(CONFIG_VT)           += conmakehash
hostprogs-$(CONFIG_PROM_CONSOLE) += conmakehash
hostprogs-$(CONFIG_IKCONFIG)     += bin2c

always		:= $(hostprogs-y) $(hostprogs-m)

# The following hostprogs-y programs are only build on demand
hostprogs-y += unifdef

subdir-$(CONFIG_MODVERSIONS) += genksyms
subdir-y                     += mod

# Let clean descend into subdirs
subdir-	+= basic kconfig package
back to top