Staging
v0.8.1
https://github.com/torvalds/linux
Revision f5d6c63a67a8f124ddae88511427249d1dd87880 authored by Ralf Baechle on 29 November 2006, 15:04:08 UTC, committed by Ralf Baechle on 29 November 2006, 16:21:34 UTC
Otherwise CPU 0 doesn't show up in sysfs which breaks some software.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
1 parent 1275361
Raw File
Tip revision: f5d6c63a67a8f124ddae88511427249d1dd87880 authored by Ralf Baechle on 29 November 2006, 15:04:08 UTC
[MIPS] Do topology_init even on uniprocessor kernels.
Tip revision: f5d6c63
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