aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Woodhouse <David.Woodhouse@intel.com>2008-07-14 18:49:04 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2008-07-14 18:51:11 -0400
commit751851af7aae9b8bd5a60b3897209081fbc18b2b (patch)
tree5cb8dbb71d691a760da61e319796800ee42cc1c5 /Makefile
parenta41eebab7537890409ea9dfe0fcda9b5fbdb090d (diff)
parentd71792ac3d48df6693f7b339e02494efc27036c3 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Conflicts: sound/pci/Kconfig
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3c5eb66ec52..6da017acbdd5 100644
--- a/Makefile
+++ b/Makefile
@@ -450,7 +450,7 @@ scripts: scripts_basic include/config/auto.conf
450 450
451# Objects we will link into vmlinux / subdirs we need to visit 451# Objects we will link into vmlinux / subdirs we need to visit
452init-y := init/ 452init-y := init/
453drivers-y := drivers/ sound/ 453drivers-y := drivers/ sound/ firmware/
454net-y := net/ 454net-y := net/
455libs-y := lib/ 455libs-y := lib/
456core-y := usr/ 456core-y := usr/
@@ -995,6 +995,16 @@ depend dep:
995 @echo '*** Warning: make $@ is unnecessary now.' 995 @echo '*** Warning: make $@ is unnecessary now.'
996 996
997# --------------------------------------------------------------------------- 997# ---------------------------------------------------------------------------
998# Firmware install
999INSTALL_FW_PATH=$(INSTALL_MOD_PATH)/lib/firmware
1000export INSTALL_FW_PATH
1001
1002PHONY += firmware_install
1003firmware_install: FORCE
1004 @mkdir -p $(objtree)/firmware
1005 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_install
1006
1007# ---------------------------------------------------------------------------
998# Kernel headers 1008# Kernel headers
999INSTALL_HDR_PATH=$(objtree)/usr 1009INSTALL_HDR_PATH=$(objtree)/usr
1000export INSTALL_HDR_PATH 1010export INSTALL_HDR_PATH
@@ -1080,6 +1090,7 @@ _modinst_:
1080# boot script depmod is the master version. 1090# boot script depmod is the master version.
1081PHONY += _modinst_post 1091PHONY += _modinst_post
1082_modinst_post: _modinst_ 1092_modinst_post: _modinst_
1093 $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.fwinst obj=firmware __fw_modinst
1083 $(call cmd,depmod) 1094 $(call cmd,depmod)
1084 1095
1085else # CONFIG_MODULES 1096else # CONFIG_MODULES
@@ -1197,6 +1208,8 @@ help:
1197 @echo '* vmlinux - Build the bare kernel' 1208 @echo '* vmlinux - Build the bare kernel'
1198 @echo '* modules - Build all modules' 1209 @echo '* modules - Build all modules'
1199 @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)' 1210 @echo ' modules_install - Install all modules to INSTALL_MOD_PATH (default: /)'
1211 @echo ' firmware_install- Install all firmware to INSTALL_FW_PATH'
1212 @echo ' (default: $$(INSTALL_MOD_PATH)/lib/firmware)'
1200 @echo ' dir/ - Build all files in dir and below' 1213 @echo ' dir/ - Build all files in dir and below'
1201 @echo ' dir/file.[ois] - Build specified target only' 1214 @echo ' dir/file.[ois] - Build specified target only'
1202 @echo ' dir/file.ko - Build module including final link' 1215 @echo ' dir/file.ko - Build module including final link'