Makefile 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. #
  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. #
  17. # 20050320 Kianusch Sayah Karadji <kianusch@sk-tech.net>
  18. # Added support for GEODE CPU
  19. HAS_BIARCH := $(call cc-option-yn, -m32)
  20. ifeq ($(HAS_BIARCH),y)
  21. AS := $(AS) --32
  22. LD := $(LD) -m elf_i386
  23. CC := $(CC) -m32
  24. endif
  25. LDFLAGS := -m elf_i386
  26. OBJCOPYFLAGS := -O binary -R .note -R .comment -S
  27. LDFLAGS_vmlinux :=
  28. CHECKFLAGS += -D__i386__
  29. CFLAGS += -pipe -msoft-float
  30. # prevent gcc from keeping the stack 16 byte aligned
  31. CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2)
  32. align := $(cc-option-align)
  33. cflags-$(CONFIG_M386) += -march=i386
  34. cflags-$(CONFIG_M486) += -march=i486
  35. cflags-$(CONFIG_M586) += -march=i586
  36. cflags-$(CONFIG_M586TSC) += -march=i586
  37. cflags-$(CONFIG_M586MMX) += $(call cc-option,-march=pentium-mmx,-march=i586)
  38. cflags-$(CONFIG_M686) += -march=i686
  39. cflags-$(CONFIG_MPENTIUMII) += -march=i686 $(call cc-option,-mtune=pentium2)
  40. cflags-$(CONFIG_MPENTIUMIII) += -march=i686 $(call cc-option,-mtune=pentium3)
  41. cflags-$(CONFIG_MPENTIUMM) += -march=i686 $(call cc-option,-mtune=pentium3)
  42. cflags-$(CONFIG_MPENTIUM4) += -march=i686 $(call cc-option,-mtune=pentium4)
  43. cflags-$(CONFIG_MK6) += -march=k6
  44. # Please note, that patches that add -march=athlon-xp and friends are pointless.
  45. # They make zero difference whatsosever to performance at this time.
  46. cflags-$(CONFIG_MK7) += $(call cc-option,-march=athlon,-march=i686 $(align)-functions=4)
  47. cflags-$(CONFIG_MK8) += $(call cc-option,-march=k8,$(call cc-option,-march=athlon,-march=i686 $(align)-functions=4))
  48. cflags-$(CONFIG_MCRUSOE) += -march=i686 $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
  49. cflags-$(CONFIG_MEFFICEON) += -march=i686 $(call cc-option,-mtune=pentium3) $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
  50. cflags-$(CONFIG_MWINCHIPC6) += $(call cc-option,-march=winchip-c6,-march=i586)
  51. cflags-$(CONFIG_MWINCHIP2) += $(call cc-option,-march=winchip2,-march=i586)
  52. cflags-$(CONFIG_MWINCHIP3D) += $(call cc-option,-march=winchip2,-march=i586)
  53. cflags-$(CONFIG_MCYRIXIII) += $(call cc-option,-march=c3,-march=i486) $(align)-functions=0 $(align)-jumps=0 $(align)-loops=0
  54. cflags-$(CONFIG_MVIAC3_2) += $(call cc-option,-march=c3-2,-march=i686)
  55. # AMD Elan support
  56. cflags-$(CONFIG_X86_ELAN) += -march=i486
  57. # Geode GX1 support
  58. cflags-$(CONFIG_MGEODEGX1) += $(call cc-option,-march=pentium-mmx,-march=i486)
  59. # -mregparm=3 works ok on gcc-3.0 and later
  60. #
  61. GCC_VERSION := $(call cc-version)
  62. cflags-$(CONFIG_REGPARM) += $(shell if [ $(GCC_VERSION) -ge 0300 ] ; then echo "-mregparm=3"; fi ;)
  63. # Disable unit-at-a-time mode, it makes gcc use a lot more stack
  64. # due to the lack of sharing of stacklots.
  65. CFLAGS += $(call cc-option,-fno-unit-at-a-time)
  66. CFLAGS += $(cflags-y)
  67. # Default subarch .c files
  68. mcore-y := mach-default
  69. # Voyager subarch support
  70. mflags-$(CONFIG_X86_VOYAGER) := -Iinclude/asm-i386/mach-voyager
  71. mcore-$(CONFIG_X86_VOYAGER) := mach-voyager
  72. # VISWS subarch support
  73. mflags-$(CONFIG_X86_VISWS) := -Iinclude/asm-i386/mach-visws
  74. mcore-$(CONFIG_X86_VISWS) := mach-visws
  75. # NUMAQ subarch support
  76. mflags-$(CONFIG_X86_NUMAQ) := -Iinclude/asm-i386/mach-numaq
  77. mcore-$(CONFIG_X86_NUMAQ) := mach-default
  78. # BIGSMP subarch support
  79. mflags-$(CONFIG_X86_BIGSMP) := -Iinclude/asm-i386/mach-bigsmp
  80. mcore-$(CONFIG_X86_BIGSMP) := mach-default
  81. #Summit subarch support
  82. mflags-$(CONFIG_X86_SUMMIT) := -Iinclude/asm-i386/mach-summit
  83. mcore-$(CONFIG_X86_SUMMIT) := mach-default
  84. # generic subarchitecture
  85. mflags-$(CONFIG_X86_GENERICARCH) := -Iinclude/asm-i386/mach-generic
  86. mcore-$(CONFIG_X86_GENERICARCH) := mach-default
  87. core-$(CONFIG_X86_GENERICARCH) += arch/i386/mach-generic/
  88. # ES7000 subarch support
  89. mflags-$(CONFIG_X86_ES7000) := -Iinclude/asm-i386/mach-es7000
  90. mcore-$(CONFIG_X86_ES7000) := mach-default
  91. core-$(CONFIG_X86_ES7000) := arch/i386/mach-es7000/
  92. # default subarch .h files
  93. mflags-y += -Iinclude/asm-i386/mach-default
  94. head-y := arch/i386/kernel/head.o arch/i386/kernel/init_task.o
  95. libs-y += arch/i386/lib/
  96. core-y += arch/i386/kernel/ \
  97. arch/i386/mm/ \
  98. arch/i386/$(mcore-y)/ \
  99. arch/i386/crypto/
  100. drivers-$(CONFIG_MATH_EMULATION) += arch/i386/math-emu/
  101. drivers-$(CONFIG_PCI) += arch/i386/pci/
  102. # must be linked after kernel/
  103. drivers-$(CONFIG_OPROFILE) += arch/i386/oprofile/
  104. drivers-$(CONFIG_PM) += arch/i386/power/
  105. CFLAGS += $(mflags-y)
  106. AFLAGS += $(mflags-y)
  107. boot := arch/i386/boot
  108. .PHONY: zImage bzImage compressed zlilo bzlilo \
  109. zdisk bzdisk fdimage fdimage144 fdimage288 install kernel_install
  110. all: bzImage
  111. # KBUILD_IMAGE specify target image being built
  112. KBUILD_IMAGE := $(boot)/bzImage
  113. zImage zlilo zdisk: KBUILD_IMAGE := arch/i386/boot/zImage
  114. zImage bzImage: vmlinux
  115. $(Q)$(MAKE) $(build)=$(boot) $(KBUILD_IMAGE)
  116. compressed: zImage
  117. zlilo bzlilo: vmlinux
  118. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zlilo
  119. zdisk bzdisk: vmlinux
  120. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) zdisk
  121. fdimage fdimage144 fdimage288: vmlinux
  122. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@
  123. install: vmlinux
  124. install kernel_install:
  125. $(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) install
  126. prepare: include/asm-$(ARCH)/asm_offsets.h
  127. CLEAN_FILES += include/asm-$(ARCH)/asm_offsets.h
  128. arch/$(ARCH)/kernel/asm-offsets.s: include/asm include/linux/version.h \
  129. include/config/MARKER
  130. include/asm-$(ARCH)/asm_offsets.h: arch/$(ARCH)/kernel/asm-offsets.s
  131. $(call filechk,gen-asm-offsets)
  132. archclean:
  133. $(Q)$(MAKE) $(clean)=arch/i386/boot
  134. define archhelp
  135. echo '* bzImage - Compressed kernel image (arch/$(ARCH)/boot/bzImage)'
  136. echo ' install - Install kernel using'
  137. echo ' (your) ~/bin/installkernel or'
  138. echo ' (distribution) /sbin/installkernel or'
  139. echo ' install to $$(INSTALL_PATH) and run lilo'
  140. echo ' bzdisk - Create a boot floppy in /dev/fd0'
  141. echo ' fdimage - Create a boot floppy image'
  142. endef
  143. CLEAN_FILES += arch/$(ARCH)/boot/fdimage arch/$(ARCH)/boot/mtools.conf