Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild changes from Michal Marek: - fix for handling dependencies of *-objs targets by Masahiro Yamada - lots of cleanups in the kbuild machinery, also by Masahiro - fixes for the kconfig build to use an UTF-8 capable ncurses library if possible and to build on not-so-standard installs - some more minor fixes * 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: kbuild: Do not reference *-n variables in the Makefile kbuild: simplify build, clean, modbuiltin shorthands kbuild: arm: Do not define "comma" twice kbuild: remove obj-n and lib-n handling kbuild: remove unnecessary variable initializaions kbuild: remove unnecessary "obj- := dummy.o" trick kbuild: handle C=... and M=... after entering into build directory kbuild: use $(Q) for sub-make target kbuild: fake the "Entering directory ..." message more simply kconfig/lxdialog: get ncurses CFLAGS with pkg-config kconfig: nconfig: fix multi-byte UTF handling kconfig: lxdialog: fix spelling kbuild: Make scripts executable kbuild: remove redundant clean-files from scripts/kconfig/Makefile kbuild: refactor script/kconfig/Makefile kbuild: handle the dependency of multi-objs hostprogs appropriately kbuild: handle multi-objs dependency appropriately
This commit is contained in:
commit
f33a3faa25
55 changed files with 76 additions and 181 deletions
88
Makefile
88
Makefile
|
@ -10,11 +10,9 @@ NAME = Shuffling Zombie Juror
|
||||||
# Comments in this file are targeted only to the developer, do not
|
# Comments in this file are targeted only to the developer, do not
|
||||||
# expect to learn how to build the kernel reading this file.
|
# expect to learn how to build the kernel reading this file.
|
||||||
|
|
||||||
# Do not:
|
# Do not use make's built-in rules and variables
|
||||||
# o use make's built-in rules and variables
|
# (this increases performance and avoids hard-to-debug behaviour);
|
||||||
# (this increases performance and avoids hard-to-debug behaviour);
|
MAKEFLAGS += -rR
|
||||||
# o print "Entering directory ...";
|
|
||||||
MAKEFLAGS += -rR --no-print-directory
|
|
||||||
|
|
||||||
# Avoid funny character set dependencies
|
# Avoid funny character set dependencies
|
||||||
unexport LC_ALL
|
unexport LC_ALL
|
||||||
|
@ -97,34 +95,6 @@ endif
|
||||||
|
|
||||||
export quiet Q KBUILD_VERBOSE
|
export quiet Q KBUILD_VERBOSE
|
||||||
|
|
||||||
# Call a source code checker (by default, "sparse") as part of the
|
|
||||||
# C compilation.
|
|
||||||
#
|
|
||||||
# Use 'make C=1' to enable checking of only re-compiled files.
|
|
||||||
# Use 'make C=2' to enable checking of *all* source files, regardless
|
|
||||||
# of whether they are re-compiled or not.
|
|
||||||
#
|
|
||||||
# See the file "Documentation/sparse.txt" for more details, including
|
|
||||||
# where to get the "sparse" utility.
|
|
||||||
|
|
||||||
ifeq ("$(origin C)", "command line")
|
|
||||||
KBUILD_CHECKSRC = $(C)
|
|
||||||
endif
|
|
||||||
ifndef KBUILD_CHECKSRC
|
|
||||||
KBUILD_CHECKSRC = 0
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Use make M=dir to specify directory of external module to build
|
|
||||||
# Old syntax make ... SUBDIRS=$PWD is still supported
|
|
||||||
# Setting the environment variable KBUILD_EXTMOD take precedence
|
|
||||||
ifdef SUBDIRS
|
|
||||||
KBUILD_EXTMOD ?= $(SUBDIRS)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ("$(origin M)", "command line")
|
|
||||||
KBUILD_EXTMOD := $(M)
|
|
||||||
endif
|
|
||||||
|
|
||||||
# kbuild supports saving output files in a separate directory.
|
# kbuild supports saving output files in a separate directory.
|
||||||
# To locate output files in a separate directory two syntaxes are supported.
|
# To locate output files in a separate directory two syntaxes are supported.
|
||||||
# In both cases the working directory must be the root of the kernel src.
|
# In both cases the working directory must be the root of the kernel src.
|
||||||
|
@ -140,7 +110,6 @@ endif
|
||||||
# The O= assignment takes precedence over the KBUILD_OUTPUT environment
|
# The O= assignment takes precedence over the KBUILD_OUTPUT environment
|
||||||
# variable.
|
# variable.
|
||||||
|
|
||||||
|
|
||||||
# KBUILD_SRC is set on invocation of make in OBJ directory
|
# KBUILD_SRC is set on invocation of make in OBJ directory
|
||||||
# KBUILD_SRC is not intended to be used by the regular user (for now)
|
# KBUILD_SRC is not intended to be used by the regular user (for now)
|
||||||
ifeq ($(KBUILD_SRC),)
|
ifeq ($(KBUILD_SRC),)
|
||||||
|
@ -172,17 +141,9 @@ PHONY += $(MAKECMDGOALS) sub-make
|
||||||
$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
|
$(filter-out _all sub-make $(CURDIR)/Makefile, $(MAKECMDGOALS)) _all: sub-make
|
||||||
@:
|
@:
|
||||||
|
|
||||||
# Fake the "Entering directory" message once, so that IDEs/editors are
|
|
||||||
# able to understand relative filenames.
|
|
||||||
echodir := @echo
|
|
||||||
quiet_echodir := @echo
|
|
||||||
silent_echodir := @:
|
|
||||||
sub-make: FORCE
|
sub-make: FORCE
|
||||||
$($(quiet)echodir) "make[1]: Entering directory \`$(KBUILD_OUTPUT)'"
|
$(Q)$(MAKE) -C $(KBUILD_OUTPUT) KBUILD_SRC=$(CURDIR) \
|
||||||
$(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
|
-f $(CURDIR)/Makefile $(filter-out _all sub-make,$(MAKECMDGOALS))
|
||||||
KBUILD_SRC=$(CURDIR) \
|
|
||||||
KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
|
|
||||||
$(filter-out _all sub-make,$(MAKECMDGOALS))
|
|
||||||
|
|
||||||
# Leave processing to above invocation of make
|
# Leave processing to above invocation of make
|
||||||
skip-makefile := 1
|
skip-makefile := 1
|
||||||
|
@ -192,6 +153,39 @@ endif # ifeq ($(KBUILD_SRC),)
|
||||||
# We process the rest of the Makefile if this is the final invocation of make
|
# We process the rest of the Makefile if this is the final invocation of make
|
||||||
ifeq ($(skip-makefile),)
|
ifeq ($(skip-makefile),)
|
||||||
|
|
||||||
|
# Do not print "Entering directory ...",
|
||||||
|
# but we want to display it when entering to the output directory
|
||||||
|
# so that IDEs/editors are able to understand relative filenames.
|
||||||
|
MAKEFLAGS += --no-print-directory
|
||||||
|
|
||||||
|
# Call a source code checker (by default, "sparse") as part of the
|
||||||
|
# C compilation.
|
||||||
|
#
|
||||||
|
# Use 'make C=1' to enable checking of only re-compiled files.
|
||||||
|
# Use 'make C=2' to enable checking of *all* source files, regardless
|
||||||
|
# of whether they are re-compiled or not.
|
||||||
|
#
|
||||||
|
# See the file "Documentation/sparse.txt" for more details, including
|
||||||
|
# where to get the "sparse" utility.
|
||||||
|
|
||||||
|
ifeq ("$(origin C)", "command line")
|
||||||
|
KBUILD_CHECKSRC = $(C)
|
||||||
|
endif
|
||||||
|
ifndef KBUILD_CHECKSRC
|
||||||
|
KBUILD_CHECKSRC = 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Use make M=dir to specify directory of external module to build
|
||||||
|
# Old syntax make ... SUBDIRS=$PWD is still supported
|
||||||
|
# Setting the environment variable KBUILD_EXTMOD take precedence
|
||||||
|
ifdef SUBDIRS
|
||||||
|
KBUILD_EXTMOD ?= $(SUBDIRS)
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ("$(origin M)", "command line")
|
||||||
|
KBUILD_EXTMOD := $(M)
|
||||||
|
endif
|
||||||
|
|
||||||
# If building an external module we do not care about the all: rule
|
# If building an external module we do not care about the all: rule
|
||||||
# but instead _all depend on modules
|
# but instead _all depend on modules
|
||||||
PHONY += all
|
PHONY += all
|
||||||
|
@ -889,9 +883,7 @@ vmlinux-dirs := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
|
||||||
$(net-y) $(net-m) $(libs-y) $(libs-m)))
|
$(net-y) $(net-m) $(libs-y) $(libs-m)))
|
||||||
|
|
||||||
vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
|
vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
|
||||||
$(init-n) $(init-) \
|
$(init-) $(core-) $(drivers-) $(net-) $(libs-))))
|
||||||
$(core-n) $(core-) $(drivers-n) $(drivers-) \
|
|
||||||
$(net-n) $(net-) $(libs-n) $(libs-))))
|
|
||||||
|
|
||||||
init-y := $(patsubst %/, %/built-in.o, $(init-y))
|
init-y := $(patsubst %/, %/built-in.o, $(init-y))
|
||||||
core-y := $(patsubst %/, %/built-in.o, $(core-y))
|
core-y := $(patsubst %/, %/built-in.o, $(core-y))
|
||||||
|
@ -1591,7 +1583,7 @@ endif
|
||||||
# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
|
# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
|
||||||
# Usage:
|
# Usage:
|
||||||
# $(Q)$(MAKE) $(clean)=dir
|
# $(Q)$(MAKE) $(clean)=dir
|
||||||
clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
|
clean := -f $(srctree)/scripts/Makefile.clean obj
|
||||||
|
|
||||||
endif # skip-makefile
|
endif # skip-makefile
|
||||||
|
|
||||||
|
|
|
@ -50,8 +50,6 @@ AS += -EL
|
||||||
LD += -EL
|
LD += -EL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comma = ,
|
|
||||||
|
|
||||||
# This selects which instruction set is used.
|
# This selects which instruction set is used.
|
||||||
# Note that GCC does not numerically define an architecture version
|
# Note that GCC does not numerically define an architecture version
|
||||||
# macro, but instead defines a whole series of macros which makes
|
# macro, but instead defines a whole series of macros which makes
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := gpio.o setup.o sysirq_mask.o
|
obj-y := gpio.o setup.o sysirq_mask.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
obj-$(CONFIG_OLD_IRQ_AT91) += irq.o
|
obj-$(CONFIG_OLD_IRQ_AT91) += irq.o
|
||||||
obj-$(CONFIG_OLD_CLK_AT91) += clock.o
|
obj-$(CONFIG_OLD_CLK_AT91) += clock.o
|
||||||
|
|
|
@ -5,6 +5,3 @@
|
||||||
# Object file lists.
|
# Object file lists.
|
||||||
|
|
||||||
obj-y := core.o io.o leds.o
|
obj-y := core.o io.o leds.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
# Makefile for the linux kernel.
|
# Makefile for the linux kernel.
|
||||||
#
|
#
|
||||||
obj-y := core.o clock.o
|
obj-y := core.o clock.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
obj-$(CONFIG_EP93XX_DMA) += dma.o
|
obj-$(CONFIG_EP93XX_DMA) += dma.o
|
||||||
|
|
||||||
|
|
|
@ -7,11 +7,6 @@
|
||||||
|
|
||||||
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) += -I$(srctree)/$(src)/include -I$(srctree)/arch/arm/plat-samsung/include
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) += -I$(srctree)/$(src)/include -I$(srctree)/arch/arm/plat-samsung/include
|
||||||
|
|
||||||
obj-y :=
|
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# Core
|
# Core
|
||||||
|
|
||||||
obj-$(CONFIG_ARCH_EXYNOS) += exynos.o pmu.o exynos-smc.o firmware.o
|
obj-$(CONFIG_ARCH_EXYNOS) += exynos.o pmu.o exynos-smc.o firmware.o
|
||||||
|
|
|
@ -5,9 +5,6 @@
|
||||||
# Object file lists.
|
# Object file lists.
|
||||||
|
|
||||||
obj-y := common.o dma.o isa-irq.o
|
obj-y := common.o dma.o isa-irq.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
pci-y += dc21285.o
|
pci-y += dc21285.o
|
||||||
pci-$(CONFIG_ARCH_CATS) += cats-pci.o
|
pci-$(CONFIG_ARCH_CATS) += cats-pci.o
|
||||||
|
|
|
@ -1,8 +1,3 @@
|
||||||
obj-y :=
|
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
obj-$(CONFIG_ARCH_IOP13XX) += setup.o
|
obj-$(CONFIG_ARCH_IOP13XX) += setup.o
|
||||||
obj-$(CONFIG_ARCH_IOP13XX) += irq.o
|
obj-$(CONFIG_ARCH_IOP13XX) += irq.o
|
||||||
obj-$(CONFIG_ARCH_IOP13XX) += pci.o
|
obj-$(CONFIG_ARCH_IOP13XX) += pci.o
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := irq.o
|
obj-y := irq.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
obj-$(CONFIG_MACH_GLANTANK) += glantank.o
|
obj-$(CONFIG_MACH_GLANTANK) += glantank.o
|
||||||
obj-$(CONFIG_ARCH_IQ80321) += iq80321.o
|
obj-$(CONFIG_ARCH_IQ80321) += iq80321.o
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := irq.o uart.o
|
obj-y := irq.o uart.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
obj-$(CONFIG_ARCH_IQ80331) += iq80331.o
|
obj-$(CONFIG_ARCH_IQ80331) += iq80331.o
|
||||||
obj-$(CONFIG_MACH_IQ80332) += iq80332.o
|
obj-$(CONFIG_MACH_IQ80332) += iq80332.o
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := cpu.o irq.o time.o devices.o
|
obj-y := cpu.o irq.o time.o devices.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# PCI support is optional
|
# PCI support is optional
|
||||||
obj-$(CONFIG_PCI) += pci.o
|
obj-$(CONFIG_PCI) += pci.o
|
||||||
|
|
|
@ -5,7 +5,3 @@
|
||||||
# Object file lists.
|
# Object file lists.
|
||||||
|
|
||||||
obj-y := dma.o ecard.o fiq.o irq.o riscpc.o time.o
|
obj-y := dma.o ecard.o fiq.o irq.o riscpc.o time.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
|
|
|
@ -7,11 +7,6 @@
|
||||||
#
|
#
|
||||||
# Licensed under GPLv2
|
# Licensed under GPLv2
|
||||||
|
|
||||||
obj-y :=
|
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# core
|
# core
|
||||||
|
|
||||||
obj-y += common.o
|
obj-y += common.o
|
||||||
|
|
|
@ -5,11 +5,6 @@
|
||||||
#
|
#
|
||||||
# Licensed under GPLv2
|
# Licensed under GPLv2
|
||||||
|
|
||||||
obj-y :=
|
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# Core
|
# Core
|
||||||
|
|
||||||
obj-y += common.o
|
obj-y += common.o
|
||||||
|
|
|
@ -7,11 +7,6 @@
|
||||||
|
|
||||||
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) += -I$(srctree)/$(src)/include -I$(srctree)/arch/arm/plat-samsung/include
|
ccflags-$(CONFIG_ARCH_MULTIPLATFORM) += -I$(srctree)/$(src)/include -I$(srctree)/arch/arm/plat-samsung/include
|
||||||
|
|
||||||
obj-y :=
|
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# Core
|
# Core
|
||||||
|
|
||||||
obj-$(CONFIG_PM_SLEEP) += pm.o sleep.o
|
obj-$(CONFIG_PM_SLEEP) += pm.o sleep.o
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
|
|
||||||
# Common support
|
# Common support
|
||||||
obj-y := clock.o generic.o irq.o time.o #nmi-oopser.o
|
obj-y := clock.o generic.o irq.o time.o #nmi-oopser.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# Specific board support
|
# Specific board support
|
||||||
obj-$(CONFIG_SA1100_ASSABET) += assabet.o
|
obj-$(CONFIG_SA1100_ASSABET) += assabet.o
|
||||||
|
|
|
@ -3,9 +3,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y := core.o
|
obj-y := core.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
obj-$(CONFIG_MACH_U300_SPIDUMMY) += dummyspichip.o
|
obj-$(CONFIG_MACH_U300_SPIDUMMY) += dummyspichip.o
|
||||||
obj-$(CONFIG_REGULATOR_AB3100) += regulator.o
|
obj-$(CONFIG_REGULATOR_AB3100) += regulator.o
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
# Makefile for the linux kernel.
|
# Makefile for the linux kernel.
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-y :=
|
|
||||||
|
|
||||||
# IOP32X
|
# IOP32X
|
||||||
obj-$(CONFIG_ARCH_IOP32X) += i2c.o
|
obj-$(CONFIG_ARCH_IOP32X) += i2c.o
|
||||||
obj-$(CONFIG_ARCH_IOP32X) += pci.o
|
obj-$(CONFIG_ARCH_IOP32X) += pci.o
|
||||||
|
@ -27,7 +25,3 @@ obj-$(CONFIG_ARCH_IOP33X) += restart.o
|
||||||
# IOP13XX
|
# IOP13XX
|
||||||
obj-$(CONFIG_ARCH_IOP13XX) += cp6.o
|
obj-$(CONFIG_ARCH_IOP13XX) += cp6.o
|
||||||
obj-$(CONFIG_ARCH_IOP13XX) += time.o
|
obj-$(CONFIG_ARCH_IOP13XX) += time.o
|
||||||
|
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
|
@ -6,9 +6,6 @@ ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/arch/arm/plat-omap/include
|
||||||
|
|
||||||
# Common support
|
# Common support
|
||||||
obj-y := sram.o dma.o counter_32k.o
|
obj-y := sram.o dma.o counter_32k.o
|
||||||
obj-m :=
|
|
||||||
obj-n :=
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# omap_device support (OMAP2+ only at the moment)
|
# omap_device support (OMAP2+ only at the moment)
|
||||||
|
|
||||||
|
|
|
@ -6,11 +6,6 @@
|
||||||
|
|
||||||
ccflags-$(CONFIG_ARCH_MULTI_V7) += -I$(srctree)/$(src)/include
|
ccflags-$(CONFIG_ARCH_MULTI_V7) += -I$(srctree)/$(src)/include
|
||||||
|
|
||||||
obj-y :=
|
|
||||||
obj-m :=
|
|
||||||
obj-n := dummy.o
|
|
||||||
obj- :=
|
|
||||||
|
|
||||||
# Objects we always build independent of SoC choice
|
# Objects we always build independent of SoC choice
|
||||||
|
|
||||||
obj-y += init.o cpu.o
|
obj-y += init.o cpu.o
|
||||||
|
|
|
@ -30,8 +30,6 @@ AS += -EL
|
||||||
LD += -EL
|
LD += -EL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comma = ,
|
|
||||||
|
|
||||||
CHECKFLAGS += -D__aarch64__
|
CHECKFLAGS += -D__aarch64__
|
||||||
|
|
||||||
# Default value
|
# Default value
|
||||||
|
|
|
@ -7,5 +7,3 @@ obj-$(CONFIG_ARCH_R8A7791) += clk-rcar-gen2.o
|
||||||
obj-$(CONFIG_ARCH_R8A7794) += clk-rcar-gen2.o
|
obj-$(CONFIG_ARCH_R8A7794) += clk-rcar-gen2.o
|
||||||
obj-$(CONFIG_ARCH_SHMOBILE_MULTI) += clk-div6.o
|
obj-$(CONFIG_ARCH_SHMOBILE_MULTI) += clk-div6.o
|
||||||
obj-$(CONFIG_ARCH_SHMOBILE_MULTI) += clk-mstp.o
|
obj-$(CONFIG_ARCH_SHMOBILE_MULTI) += clk-mstp.o
|
||||||
# for emply built-in.o
|
|
||||||
obj-n := dummy
|
|
||||||
|
|
|
@ -1,5 +1 @@
|
||||||
|
|
||||||
obj-$(CONFIG_WIMAX_I2400M) += i2400m/
|
obj-$(CONFIG_WIMAX_I2400M) += i2400m/
|
||||||
|
|
||||||
# (from Sam Ravnborg) force kbuild to create built-in.o
|
|
||||||
obj- := dummy.o
|
|
||||||
|
|
|
@ -232,6 +232,6 @@ targets := $(fw-shipped-) $(patsubst $(obj)/%,%, \
|
||||||
|
|
||||||
# Without this, built-in.o won't be created when it's empty, and the
|
# Without this, built-in.o won't be created when it's empty, and the
|
||||||
# final vmlinux link will fail.
|
# final vmlinux link will fail.
|
||||||
obj-n := dummy
|
obj- := dummy
|
||||||
|
|
||||||
hostprogs-y := ihex2fw
|
hostprogs-y := ihex2fw
|
||||||
|
|
|
@ -171,13 +171,13 @@ ld-ifversion = $(shell [ $(call ld-version) $(1) $(2) ] && echo $(3))
|
||||||
# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
|
# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
|
||||||
# Usage:
|
# Usage:
|
||||||
# $(Q)$(MAKE) $(build)=dir
|
# $(Q)$(MAKE) $(build)=dir
|
||||||
build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
|
build := -f $(srctree)/scripts/Makefile.build obj
|
||||||
|
|
||||||
###
|
###
|
||||||
# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj=
|
# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj=
|
||||||
# Usage:
|
# Usage:
|
||||||
# $(Q)$(MAKE) $(modbuiltin)=dir
|
# $(Q)$(MAKE) $(modbuiltin)=dir
|
||||||
modbuiltin := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.modbuiltin obj
|
modbuiltin := -f $(srctree)/scripts/Makefile.modbuiltin obj
|
||||||
|
|
||||||
# Prefix -I with $(srctree) if it is not an absolute path.
|
# Prefix -I with $(srctree) if it is not an absolute path.
|
||||||
# skip if -I has no parameter
|
# skip if -I has no parameter
|
||||||
|
|
|
@ -79,11 +79,11 @@ endif
|
||||||
|
|
||||||
# ===========================================================================
|
# ===========================================================================
|
||||||
|
|
||||||
ifneq ($(strip $(lib-y) $(lib-m) $(lib-n) $(lib-)),)
|
ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),)
|
||||||
lib-target := $(obj)/lib.a
|
lib-target := $(obj)/lib.a
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(strip $(obj-y) $(obj-m) $(obj-n) $(obj-) $(subdir-m) $(lib-target)),)
|
ifneq ($(strip $(obj-y) $(obj-m) $(obj-) $(subdir-m) $(lib-target)),)
|
||||||
builtin-target := $(obj)/built-in.o
|
builtin-target := $(obj)/built-in.o
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -382,16 +382,14 @@ cmd_link_multi-y = $(LD) $(ld_flags) -r -o $@ $(link_multi_deps) $(cmd_secanalys
|
||||||
quiet_cmd_link_multi-m = LD [M] $@
|
quiet_cmd_link_multi-m = LD [M] $@
|
||||||
cmd_link_multi-m = $(cmd_link_multi-y)
|
cmd_link_multi-m = $(cmd_link_multi-y)
|
||||||
|
|
||||||
# We would rather have a list of rules like
|
$(multi-used-y): FORCE
|
||||||
# foo.o: $(foo-objs)
|
|
||||||
# but that's not so easy, so we rather make all composite objects depend
|
|
||||||
# on the set of all their parts
|
|
||||||
$(multi-used-y) : %.o: $(multi-objs-y) FORCE
|
|
||||||
$(call if_changed,link_multi-y)
|
$(call if_changed,link_multi-y)
|
||||||
|
$(call multi_depend, $(multi-used-y), .o, -objs -y)
|
||||||
|
|
||||||
$(multi-used-m) : %.o: $(multi-objs-m) FORCE
|
$(multi-used-m): FORCE
|
||||||
$(call if_changed,link_multi-m)
|
$(call if_changed,link_multi-m)
|
||||||
@{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod)
|
@{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod)
|
||||||
|
$(call multi_depend, $(multi-used-m), .o, -objs -y)
|
||||||
|
|
||||||
targets += $(multi-used-y) $(multi-used-m)
|
targets += $(multi-used-y) $(multi-used-m)
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ __clean:
|
||||||
# Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir
|
# Shorthand for $(Q)$(MAKE) scripts/Makefile.clean obj=dir
|
||||||
# Usage:
|
# Usage:
|
||||||
# $(Q)$(MAKE) $(clean)=dir
|
# $(Q)$(MAKE) $(clean)=dir
|
||||||
clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
|
clean := -f $(srctree)/scripts/Makefile.clean obj
|
||||||
|
|
||||||
# The filename Kbuild has precedence over Makefile
|
# The filename Kbuild has precedence over Makefile
|
||||||
kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
|
kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
|
||||||
|
@ -23,15 +23,13 @@ __subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y)))
|
||||||
subdir-y += $(__subdir-y)
|
subdir-y += $(__subdir-y)
|
||||||
__subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
|
__subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
|
||||||
subdir-m += $(__subdir-m)
|
subdir-m += $(__subdir-m)
|
||||||
__subdir-n := $(patsubst %/,%,$(filter %/, $(obj-n)))
|
|
||||||
subdir-n += $(__subdir-n)
|
|
||||||
__subdir- := $(patsubst %/,%,$(filter %/, $(obj-)))
|
__subdir- := $(patsubst %/,%,$(filter %/, $(obj-)))
|
||||||
subdir- += $(__subdir-)
|
subdir- += $(__subdir-)
|
||||||
|
|
||||||
# Subdirectories we need to descend into
|
# Subdirectories we need to descend into
|
||||||
|
|
||||||
subdir-ym := $(sort $(subdir-y) $(subdir-m))
|
subdir-ym := $(sort $(subdir-y) $(subdir-m))
|
||||||
subdir-ymn := $(sort $(subdir-ym) $(subdir-n) $(subdir-))
|
subdir-ymn := $(sort $(subdir-ym) $(subdir-))
|
||||||
|
|
||||||
# Add subdir path
|
# Add subdir path
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# Installing firmware
|
# Installing firmware
|
||||||
#
|
#
|
||||||
# We don't include the .config, so all firmware files are in $(fw-shipped-)
|
# We don't include the .config, so all firmware files are in $(fw-shipped-)
|
||||||
# rather than in $(fw-shipped-y) or $(fw-shipped-n).
|
# rather than in $(fw-shipped-y) or $(fw-shipped-m).
|
||||||
# ==========================================================================
|
# ==========================================================================
|
||||||
|
|
||||||
INSTALL := install
|
INSTALL := install
|
||||||
|
|
|
@ -96,8 +96,9 @@ quiet_cmd_host-cmulti = HOSTLD $@
|
||||||
cmd_host-cmulti = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \
|
cmd_host-cmulti = $(HOSTCC) $(HOSTLDFLAGS) -o $@ \
|
||||||
$(addprefix $(obj)/,$($(@F)-objs)) \
|
$(addprefix $(obj)/,$($(@F)-objs)) \
|
||||||
$(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
|
$(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
|
||||||
$(host-cmulti): $(obj)/%: $(host-cobjs) FORCE
|
$(host-cmulti): FORCE
|
||||||
$(call if_changed,host-cmulti)
|
$(call if_changed,host-cmulti)
|
||||||
|
$(call multi_depend, $(host-cmulti), , -objs)
|
||||||
|
|
||||||
# Create .o file from a single .c file
|
# Create .o file from a single .c file
|
||||||
# host-cobjs -> .o
|
# host-cobjs -> .o
|
||||||
|
@ -113,8 +114,9 @@ quiet_cmd_host-cxxmulti = HOSTLD $@
|
||||||
$(foreach o,objs cxxobjs,\
|
$(foreach o,objs cxxobjs,\
|
||||||
$(addprefix $(obj)/,$($(@F)-$(o)))) \
|
$(addprefix $(obj)/,$($(@F)-$(o)))) \
|
||||||
$(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
|
$(HOST_LOADLIBES) $(HOSTLOADLIBES_$(@F))
|
||||||
$(host-cxxmulti): $(obj)/%: $(host-cobjs) $(host-cxxobjs) FORCE
|
$(host-cxxmulti): FORCE
|
||||||
$(call if_changed,host-cxxmulti)
|
$(call if_changed,host-cxxmulti)
|
||||||
|
$(call multi_depend, $(host-cxxmulti), , -objs -cxxobjs)
|
||||||
|
|
||||||
# Create .o file from a single .cc (C++) file
|
# Create .o file from a single .cc (C++) file
|
||||||
quiet_cmd_host-cxxobjs = HOSTCXX $@
|
quiet_cmd_host-cxxobjs = HOSTCXX $@
|
||||||
|
|
|
@ -159,6 +159,15 @@ dtc_cpp_flags = -Wp,-MD,$(depfile).pre.tmp -nostdinc \
|
||||||
modname-multi = $(sort $(foreach m,$(multi-used),\
|
modname-multi = $(sort $(foreach m,$(multi-used),\
|
||||||
$(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))
|
$(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))
|
||||||
|
|
||||||
|
# Useful for describing the dependency of composite objects
|
||||||
|
# Usage:
|
||||||
|
# $(call multi_depend, multi_used_targets, suffix_to_remove, suffix_to_add)
|
||||||
|
define multi_depend
|
||||||
|
$(foreach m, $(notdir $1), \
|
||||||
|
$(eval $(obj)/$m: \
|
||||||
|
$(addprefix $(obj)/, $(foreach s, $3, $($(m:%$(strip $2)=%$(s)))))))
|
||||||
|
endef
|
||||||
|
|
||||||
ifdef REGENERATE_PARSERS
|
ifdef REGENERATE_PARSERS
|
||||||
|
|
||||||
# GPERF
|
# GPERF
|
||||||
|
|
0
scripts/bootgraph.pl
Normal file → Executable file
0
scripts/bootgraph.pl
Normal file → Executable file
0
scripts/export_report.pl
Normal file → Executable file
0
scripts/export_report.pl
Normal file → Executable file
0
scripts/gcc-goto.sh
Normal file → Executable file
0
scripts/gcc-goto.sh
Normal file → Executable file
0
scripts/gcc-ld
Normal file → Executable file
0
scripts/gcc-ld
Normal file → Executable file
0
scripts/gcc-version.sh
Normal file → Executable file
0
scripts/gcc-version.sh
Normal file → Executable file
0
scripts/gcc-x86_32-has-stack-protector.sh
Normal file → Executable file
0
scripts/gcc-x86_32-has-stack-protector.sh
Normal file → Executable file
0
scripts/gcc-x86_64-has-stack-protector.sh
Normal file → Executable file
0
scripts/gcc-x86_64-has-stack-protector.sh
Normal file → Executable file
0
scripts/gen_initramfs_list.sh
Normal file → Executable file
0
scripts/gen_initramfs_list.sh
Normal file → Executable file
0
scripts/headers_check.pl
Normal file → Executable file
0
scripts/headers_check.pl
Normal file → Executable file
0
scripts/headers_install.sh
Normal file → Executable file
0
scripts/headers_install.sh
Normal file → Executable file
|
@ -176,39 +176,10 @@ qconf-cxxobjs := qconf.o
|
||||||
qconf-objs := zconf.tab.o
|
qconf-objs := zconf.tab.o
|
||||||
gconf-objs := gconf.o zconf.tab.o
|
gconf-objs := gconf.o zconf.tab.o
|
||||||
|
|
||||||
hostprogs-y := conf
|
hostprogs-y := conf nconf mconf kxgettext qconf gconf
|
||||||
|
|
||||||
ifeq ($(MAKECMDGOALS),nconfig)
|
|
||||||
hostprogs-y += nconf
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(MAKECMDGOALS),menuconfig)
|
|
||||||
hostprogs-y += mconf
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(MAKECMDGOALS),update-po-config)
|
|
||||||
hostprogs-y += kxgettext
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(MAKECMDGOALS),xconfig)
|
|
||||||
qconf-target := 1
|
|
||||||
endif
|
|
||||||
ifeq ($(MAKECMDGOALS),gconfig)
|
|
||||||
gconf-target := 1
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
ifeq ($(qconf-target),1)
|
|
||||||
hostprogs-y += qconf
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq ($(gconf-target),1)
|
|
||||||
hostprogs-y += gconf
|
|
||||||
endif
|
|
||||||
|
|
||||||
clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck
|
clean-files := qconf.moc .tmp_qtcheck .tmp_gtkcheck
|
||||||
clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h
|
clean-files += zconf.tab.c zconf.lex.c zconf.hash.c gconf.glade.h
|
||||||
clean-files += mconf qconf gconf nconf
|
|
||||||
clean-files += config.pot linux.pot
|
clean-files += config.pot linux.pot
|
||||||
|
|
||||||
# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
|
# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
|
||||||
|
@ -239,11 +210,12 @@ HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \
|
||||||
HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
|
HOSTLOADLIBES_mconf = $(shell $(CONFIG_SHELL) $(check-lxdialog) -ldflags $(HOSTCC))
|
||||||
|
|
||||||
HOSTLOADLIBES_nconf = $(shell \
|
HOSTLOADLIBES_nconf = $(shell \
|
||||||
pkg-config --libs menu panel ncurses 2>/dev/null \
|
pkg-config --libs menuw panelw ncursesw 2>/dev/null \
|
||||||
|
|| pkg-config --libs menu panel ncurses 2>/dev/null \
|
||||||
|| echo "-lmenu -lpanel -lncurses" )
|
|| echo "-lmenu -lpanel -lncurses" )
|
||||||
$(obj)/qconf.o: $(obj)/.tmp_qtcheck
|
$(obj)/qconf.o: $(obj)/.tmp_qtcheck
|
||||||
|
|
||||||
ifeq ($(qconf-target),1)
|
ifeq ($(MAKECMDGOALS),xconfig)
|
||||||
$(obj)/.tmp_qtcheck: $(src)/Makefile
|
$(obj)/.tmp_qtcheck: $(src)/Makefile
|
||||||
-include $(obj)/.tmp_qtcheck
|
-include $(obj)/.tmp_qtcheck
|
||||||
|
|
||||||
|
@ -300,7 +272,7 @@ endif
|
||||||
|
|
||||||
$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
|
$(obj)/gconf.o: $(obj)/.tmp_gtkcheck
|
||||||
|
|
||||||
ifeq ($(gconf-target),1)
|
ifeq ($(MAKECMDGOALS),gconfig)
|
||||||
-include $(obj)/.tmp_gtkcheck
|
-include $(obj)/.tmp_gtkcheck
|
||||||
|
|
||||||
# GTK needs some extra effort, too...
|
# GTK needs some extra effort, too...
|
||||||
|
|
6
scripts/kconfig/lxdialog/check-lxdialog.sh
Normal file → Executable file
6
scripts/kconfig/lxdialog/check-lxdialog.sh
Normal file → Executable file
|
@ -21,7 +21,11 @@ ldflags()
|
||||||
# Where is ncurses.h?
|
# Where is ncurses.h?
|
||||||
ccflags()
|
ccflags()
|
||||||
{
|
{
|
||||||
if [ -f /usr/include/ncursesw/curses.h ]; then
|
if pkg-config --cflags ncursesw 2>/dev/null; then
|
||||||
|
echo '-DCURSES_LOC="<ncurses.h>" -DNCURSES_WIDECHAR=1'
|
||||||
|
elif pkg-config --cflags ncurses 2>/dev/null; then
|
||||||
|
echo '-DCURSES_LOC="<ncurses.h>"'
|
||||||
|
elif [ -f /usr/include/ncursesw/curses.h ]; then
|
||||||
echo '-I/usr/include/ncursesw -DCURSES_LOC="<curses.h>"'
|
echo '-I/usr/include/ncursesw -DCURSES_LOC="<curses.h>"'
|
||||||
echo ' -DNCURSES_WIDECHAR=1'
|
echo ' -DNCURSES_WIDECHAR=1'
|
||||||
elif [ -f /usr/include/ncurses/ncurses.h ]; then
|
elif [ -f /usr/include/ncurses/ncurses.h ]; then
|
||||||
|
|
|
@ -170,7 +170,7 @@ char item_tag(void);
|
||||||
/* item list manipulation for lxdialog use */
|
/* item list manipulation for lxdialog use */
|
||||||
#define MAXITEMSTR 200
|
#define MAXITEMSTR 200
|
||||||
struct dialog_item {
|
struct dialog_item {
|
||||||
char str[MAXITEMSTR]; /* promtp displayed */
|
char str[MAXITEMSTR]; /* prompt displayed */
|
||||||
char tag;
|
char tag;
|
||||||
void *data; /* pointer to menu item - used by menubox+checklist */
|
void *data; /* pointer to menu item - used by menubox+checklist */
|
||||||
int selected; /* Set to 1 by dialog_*() function if selected. */
|
int selected; /* Set to 1 by dialog_*() function if selected. */
|
||||||
|
|
0
scripts/kconfig/streamline_config.pl
Normal file → Executable file
0
scripts/kconfig/streamline_config.pl
Normal file → Executable file
0
scripts/link-vmlinux.sh
Normal file → Executable file
0
scripts/link-vmlinux.sh
Normal file → Executable file
0
scripts/markup_oops.pl
Normal file → Executable file
0
scripts/markup_oops.pl
Normal file → Executable file
0
scripts/mkmakefile
Normal file → Executable file
0
scripts/mkmakefile
Normal file → Executable file
0
scripts/mksysmap
Normal file → Executable file
0
scripts/mksysmap
Normal file → Executable file
0
scripts/package/builddeb
Normal file → Executable file
0
scripts/package/builddeb
Normal file → Executable file
0
scripts/package/buildtar
Normal file → Executable file
0
scripts/package/buildtar
Normal file → Executable file
0
scripts/profile2linkerlist.pl
Normal file → Executable file
0
scripts/profile2linkerlist.pl
Normal file → Executable file
0
scripts/rt-tester/rt-tester.py
Normal file → Executable file
0
scripts/rt-tester/rt-tester.py
Normal file → Executable file
0
scripts/selinux/install_policy.sh
Normal file → Executable file
0
scripts/selinux/install_policy.sh
Normal file → Executable file
0
scripts/tracing/draw_functrace.py
Normal file → Executable file
0
scripts/tracing/draw_functrace.py
Normal file → Executable file
0
scripts/xz_wrap.sh
Normal file → Executable file
0
scripts/xz_wrap.sh
Normal file → Executable file
Loading…
Reference in a new issue