blob: 9c1da722964d22bf92daf4c88a5898129acf8177 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# i386/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies. Remember to do have actions
6# for "archclean" cleaning up for this architecture.
7#
8# This file is subject to the terms and conditions of the GNU General Public
9# License. See the file "COPYING" in the main directory of this archive
10# for more details.
11#
12# Copyright (C) 1994 by Linus Torvalds
13#
14# 19990713 Artur Skawina <skawina@geocities.com>
15# Added '-march' and '-mpreferred-stack-boundary' support
16#
Kianusch Sayah Karadji47137412005-05-05 16:16:17 -070017# 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018# Added support for GEODE CPU
19
Thomas Gleixner9a163ed2007-10-11 11:17:01 +020020# Fill in SRCARCH
21SRCARCH := x86
22
23archprepare:
24 @mkdir -p ${objtree}/arch/x86/kernel
25
26
H. Peter Anvind0e7feb2005-06-23 00:08:09 -070027HAS_BIARCH := $(call cc-option-yn, -m32)
28ifeq ($(HAS_BIARCH),y)
29AS := $(AS) --32
30LD := $(LD) -m elf_i386
31CC := $(CC) -m32
32endif
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034LDFLAGS := -m elf_i386
35OBJCOPYFLAGS := -O binary -R .note -R .comment -S
Eric W. Biederman968de4f2006-12-07 02:14:04 +010036ifdef CONFIG_RELOCATABLE
37LDFLAGS_vmlinux := --emit-relocs
38endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039CHECKFLAGS += -D__i386__
40
Ingo Molnar25165122007-02-22 09:38:22 +010041CFLAGS += -pipe -msoft-float -mregparm=3 -freg-struct-return
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43# prevent gcc from keeping the stack 16 byte aligned
Linus Torvaldsb4652232007-05-17 20:18:11 -070044CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Paolo 'Blaisorblade' Giarrusso96d55b82005-10-30 15:00:07 -080046# CPU-specific tuning. Anything which can be shared with UML should go here.
47include $(srctree)/arch/i386/Makefile.cpu
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Andi Kleen6edfba12006-03-25 16:29:49 +010049# temporary until string.h is fixed
50cflags-y += -ffreestanding
51
Andi Kleencdfce1f2006-10-21 18:37:01 +020052# this works around some issues with generating unwind tables in older gccs
53# newer gccs do it by default
54cflags-y += -maccumulate-outgoing-args
55
Ingo Molnar9ab34fe2006-01-14 13:21:29 -080056# Disable unit-at-a-time mode on pre-gcc-4.0 compilers, it makes gcc use
57# a lot more stack due to the lack of sharing of stacklots:
58CFLAGS += $(shell if [ $(call cc-version) -lt 0400 ] ; then echo $(call cc-option,-fno-unit-at-a-time); fi ;)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Andi Kleene2414912006-09-26 10:52:30 +020060# do binutils support CFI?
Andi Kleenf0f12d82007-08-15 02:40:37 +020061cflags-y += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
62AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_rel_offset esp${comma}0\n.cfi_endproc,-DCONFIG_AS_CFI=1,)
Andi Kleene2414912006-09-26 10:52:30 +020063
Jan Beulichadf14232006-09-26 10:52:41 +020064# is .cfi_signal_frame supported too?
Andrew Mortonda8604c2006-10-21 18:37:01 +020065cflags-y += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
66AFLAGS += $(call as-instr,.cfi_startproc\n.cfi_signal_frame\n.cfi_endproc,-DCONFIG_AS_CFI_SIGNAL_FRAME=1,)
Jan Beulichadf14232006-09-26 10:52:41 +020067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068CFLAGS += $(cflags-y)
69
70# Default subarch .c files
Thomas Gleixnerd629e032007-10-11 11:16:48 +020071mcore-y := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73# Voyager subarch support
74mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-i386/mach-voyager
Thomas Gleixner9402e122007-10-11 11:16:53 +020075mcore-$(CONFIG_X86_VOYAGER) := arch/x86/mach-voyager
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77# VISWS subarch support
78mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-i386/mach-visws
Thomas Gleixnerc2b84d82007-10-11 11:16:38 +020079mcore-$(CONFIG_X86_VISWS) := arch/x86/mach-visws
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81# NUMAQ subarch support
82mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-i386/mach-numaq
Thomas Gleixnerd629e032007-10-11 11:16:48 +020083mcore-$(CONFIG_X86_NUMAQ) := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85# BIGSMP subarch support
86mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-i386/mach-bigsmp
Thomas Gleixnerd629e032007-10-11 11:16:48 +020087mcore-$(CONFIG_X86_BIGSMP) := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89#Summit subarch support
90mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-i386/mach-summit
Thomas Gleixnerd629e032007-10-11 11:16:48 +020091mcore-$(CONFIG_X86_SUMMIT) := arch/x86/mach-default
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93# generic subarchitecture
94mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-i386/mach-generic
Thomas Gleixnerd629e032007-10-11 11:16:48 +020095mcore-$(CONFIG_X86_GENERICARCH) := arch/x86/mach-default
Thomas Gleixnerc750a662007-10-11 11:16:39 +020096core-$(CONFIG_X86_GENERICARCH) += arch/x86/mach-generic/
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98# ES7000 subarch support
99mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-i386/mach-es7000
Thomas Gleixnerd629e032007-10-11 11:16:48 +0200100mcore-$(CONFIG_X86_ES7000) := arch/x86/mach-default
Thomas Gleixner334e6212007-10-11 11:16:50 +0200101core-$(CONFIG_X86_ES7000) := arch/x86/mach-es7000/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700103# Xen paravirtualization support
Thomas Gleixner97027852007-10-11 11:16:51 +0200104core-$(CONFIG_XEN) += arch/x86/xen/
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106# default subarch .h files
107mflags-y += -Iinclude/asm-i386/mach-default
108
Thomas Gleixner9a163ed2007-10-11 11:17:01 +0200109head-y := arch/x86/kernel/head_32.o arch/x86/kernel/init_task_32.o
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Thomas Gleixner44f02572007-10-11 11:16:33 +0200111libs-y += arch/x86/lib/
Thomas Gleixner9a163ed2007-10-11 11:17:01 +0200112core-y += arch/x86/kernel/ \
Thomas Gleixnerad757b62007-10-11 11:16:47 +0200113 arch/x86/mm/ \
Thomas Gleixnerd7394fe2007-10-11 11:11:35 +0200114 $(mcore-y)/ \
Thomas Gleixner9c2019422007-10-11 11:16:21 +0200115 arch/x86/crypto/
Thomas Gleixnerda957e12007-10-11 11:16:31 +0200116drivers-$(CONFIG_MATH_EMULATION) += arch/x86/math-emu/
Thomas Gleixnerfb9aa6f2007-10-11 11:16:36 +0200117drivers-$(CONFIG_PCI) += arch/x86/pci/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118# must be linked after kernel/
Thomas Gleixnerff439562007-10-11 11:16:55 +0200119drivers-$(CONFIG_OPROFILE) += arch/x86/oprofile/
Thomas Gleixner4b60eb82007-10-11 11:16:34 +0200120drivers-$(CONFIG_PM) += arch/x86/power/
Thomas Gleixner4ac24f62007-10-11 11:16:56 +0200121drivers-$(CONFIG_FB) += arch/x86/video/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123CFLAGS += $(mflags-y)
124AFLAGS += $(mflags-y)
125
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200126boot := arch/x86/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Paul Smith4f193362006-03-05 17:14:10 -0500128PHONY += zImage bzImage compressed zlilo bzlilo \
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800129 zdisk bzdisk fdimage fdimage144 fdimage288 isoimage install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131all: bzImage
132
133# KBUILD_IMAGE specify target image being built
134 KBUILD_IMAGE := $(boot)/bzImage
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200135zImage zlilo zdisk: KBUILD_IMAGE := arch/x86/boot/zImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137zImage bzImage: vmlinux
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200138 $(Q)mkdir -p $(objtree)/arch/i386/boot
139 $(Q)ln -fsn $(objtree)/arch/x86/boot/bzImage $(objtree)/arch/i386/boot/bzImage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
141
142compressed: zImage
143
144zlilo bzlilo: vmlinux
145 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
146
147zdisk bzdisk: vmlinux
148 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
149
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800150fdimage fdimage144 fdimage288 isoimage: vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
152
H. Peter Anvin0d20bab2006-01-07 17:38:39 -0800153install:
Sam Ravnborg2cacb3d2005-04-30 16:51:42 -0700154 $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156archclean:
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +0200157 $(Q)rm -rf $(objtree)/arch/i386/boot
158 $(Q)$(MAKE) $(clean)=arch/x86/boot
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160define archhelp
161 echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
162 echo ' install - Install kernel using'
163 echo ' (your) ~/bin/installkernel or'
164 echo ' (distribution) /sbin/installkernel or'
165 echo ' install to $$(INSTALL_PATH) and run lilo'
166 echo ' bzdisk - Create a boot floppy in /dev/fd0'
167 echo ' fdimage - Create a boot floppy image'
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800168 echo ' isoimage - Create a boot CD-ROM image'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169endef
170
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800171CLEAN_FILES += arch/$(ARCH)/boot/fdimage \
172 arch/$(ARCH)/boot/image.iso \
173 arch/$(ARCH)/boot/mtools.conf