Makefile (10b90ee2eccca042e2d762881dd7119d201f0898) Makefile (bc8e80d56c1ecb35e65df392d7601d1427d14efe)
1# Unified Makefile for i386 and x86_64
2
3# select defconfig based on actual architecture
4ifeq ($(ARCH),x86)
5 ifeq ($(shell uname -m),x86_64)
6 KBUILD_DEFCONFIG := x86_64_defconfig
7 else
8 KBUILD_DEFCONFIG := i386_defconfig

--- 243 unchanged lines hidden (view full) ---

252# must be linked after kernel/
253drivers-$(CONFIG_OPROFILE) += arch/x86/oprofile/
254
255# suspend and hibernation support
256drivers-$(CONFIG_PM) += arch/x86/power/
257
258drivers-$(CONFIG_FB) += arch/x86/video/
259
1# Unified Makefile for i386 and x86_64
2
3# select defconfig based on actual architecture
4ifeq ($(ARCH),x86)
5 ifeq ($(shell uname -m),x86_64)
6 KBUILD_DEFCONFIG := x86_64_defconfig
7 else
8 KBUILD_DEFCONFIG := i386_defconfig

--- 243 unchanged lines hidden (view full) ---

252# must be linked after kernel/
253drivers-$(CONFIG_OPROFILE) += arch/x86/oprofile/
254
255# suspend and hibernation support
256drivers-$(CONFIG_PM) += arch/x86/power/
257
258drivers-$(CONFIG_FB) += arch/x86/video/
259
260drivers-$(CONFIG_RAS) += arch/x86/ras/
261
262####
263# boot loader support. Several targets are kept for legacy purposes
264
265boot := arch/x86/boot
266
267BOOT_TARGETS = bzlilo bzdisk fdimage fdimage144 fdimage288 isoimage
268
269PHONY += bzImage $(BOOT_TARGETS)

--- 47 unchanged lines hidden ---
260####
261# boot loader support. Several targets are kept for legacy purposes
262
263boot := arch/x86/boot
264
265BOOT_TARGETS = bzlilo bzdisk fdimage fdimage144 fdimage288 isoimage
266
267PHONY += bzImage $(BOOT_TARGETS)

--- 47 unchanged lines hidden ---