blob: 9695affeb5848acd4a0c248d17ee3e2b311ebf71 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +02002# arch/x86/boot/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
4# This file is subject to the terms and conditions of the GNU General Public
5# License. See the file "COPYING" in the main directory of this archive
6# for more details.
7#
8# Copyright (C) 1994 by Linus Torvalds
9#
10
11# ROOT_DEV specifies the default root-device when making the image.
12# This can be either FLOPPY, CURRENT, /dev/xxxx or empty, in which case
13# the default of FLOPPY is used by 'build'.
14
15ROOT_DEV := CURRENT
16
17# If you want to preset the SVGA mode, uncomment the next line and
18# set SVGA_MODE to whatever number you want.
19# Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode.
20# The number is the same as you would ordinarily press at bootup.
21
22SVGA_MODE := -DSVGA_MODE=NORMAL_VGA
23
24# If you want the RAM disk device, define this to be the size in blocks.
25
26#RAMDISK := -DRAMDISK=512
27
H. Peter Anvin4fd06962007-07-11 12:18:56 -070028targets := vmlinux.bin setup.bin setup.elf zImage bzImage
H. Peter Anvinf0be6c62008-02-04 16:48:00 +010029subdir- := compressed
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Andi Kleena6b68072008-01-30 13:32:49 +010031setup-y += a20.o cmdline.o copy.o cpu.o cpucheck.o edd.o
H. Peter Anvin4fd06962007-07-11 12:18:56 -070032setup-y += header.o main.o mca.o memory.o pm.o pmjump.o
Andi Kleena6b68072008-01-30 13:32:49 +010033setup-y += printf.o string.o tty.o video.o version.o
34setup-$(CONFIG_X86_APM_BOOT) += apm.o
35setup-$(CONFIG_X86_VOYAGER) += voyager.o
H. Peter Anvin4fd06962007-07-11 12:18:56 -070036
37# The link order of the video-*.o modules can matter. In particular,
38# video-vga.o *must* be listed first, followed by video-vesa.o.
39# Hardware-specific drivers should follow in the order they should be
40# probed, and video-bios.o should typically be last.
41setup-y += video-vga.o
42setup-y += video-vesa.o
43setup-y += video-bios.o
H. Peter Anvin30c82642007-10-15 17:13:22 -070044
Sam Ravnborg3fbc5412007-07-17 22:27:22 +020045targets += $(setup-y)
H. Peter Anvinf0be6c62008-02-04 16:48:00 +010046hostprogs-y := mkcpustr tools/build
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
H. Peter Anvinf0be6c62008-02-04 16:48:00 +010048HOST_EXTRACFLAGS += $(LINUXINCLUDE)
49
50$(obj)/cpu.o: $(obj)/cpustr.h
51
52quiet_cmd_cpustr = CPUSTR $@
53 cmd_cpustr = $(obj)/mkcpustr > $@
54targets += cpustr.h
55$(obj)/cpustr.h: $(obj)/mkcpustr FORCE
56 $(call if_changed,cpustr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58# ---------------------------------------------------------------------------
59
H. Peter Anvin4fd06962007-07-11 12:18:56 -070060# How to compile the 16-bit code. Note we always compile for -march=i386,
61# that way we can complain to the user if the CPU is insufficient.
Sam Ravnborga0f97e02007-10-14 22:21:35 +020062KBUILD_CFLAGS := $(LINUXINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \
H. Peter Anvin4fd06962007-07-11 12:18:56 -070063 -Wall -Wstrict-prototypes \
64 -march=i386 -mregparm=3 \
65 -include $(srctree)/$(src)/code16gcc.h \
66 -fno-strict-aliasing -fomit-frame-pointer \
67 $(call cc-option, -ffreestanding) \
68 $(call cc-option, -fno-toplevel-reorder,\
69 $(call cc-option, -fno-unit-at-a-time)) \
70 $(call cc-option, -fno-stack-protector) \
71 $(call cc-option, -mpreferred-stack-boundary=2)
Sam Ravnborg4ba7e5c2008-01-30 13:32:23 +010072KBUILD_CFLAGS += $(call cc-option,-m32)
Sam Ravnborg222d3942007-10-15 21:59:31 +020073KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
H. Peter Anvin4fd06962007-07-11 12:18:56 -070074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075$(obj)/zImage: IMAGE_OFFSET := 0x1000
Sam Ravnborg7eebb932007-10-16 23:50:33 +020076$(obj)/zImage: asflags-y := $(SVGA_MODE) $(RAMDISK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077$(obj)/bzImage: IMAGE_OFFSET := 0x100000
Sam Ravnborg7eebb932007-10-16 23:50:33 +020078$(obj)/bzImage: ccflags-y := -D__BIG_KERNEL__
79$(obj)/bzImage: asflags-y := $(SVGA_MODE) $(RAMDISK) -D__BIG_KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070080$(obj)/bzImage: BUILDFLAGS := -b
81
82quiet_cmd_image = BUILD $@
H. Peter Anvin4fd06962007-07-11 12:18:56 -070083cmd_image = $(obj)/tools/build $(BUILDFLAGS) $(obj)/setup.bin \
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 $(obj)/vmlinux.bin $(ROOT_DEV) > $@
85
H. Peter Anvin4fd06962007-07-11 12:18:56 -070086$(obj)/zImage $(obj)/bzImage: $(obj)/setup.bin \
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 $(obj)/vmlinux.bin $(obj)/tools/build FORCE
88 $(call if_changed,image)
Coywolf Qi Hunt28948012005-06-21 17:15:15 -070089 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Ian Campbell1622ac22008-02-04 16:47:56 +010091OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
Linus Torvalds1da177e2005-04-16 15:20:36 -070092$(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE
93 $(call if_changed,objcopy)
94
H. Peter Anvin4fd06962007-07-11 12:18:56 -070095SETUP_OBJS = $(addprefix $(obj)/,$(setup-y))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Ian Campbell099e1372008-02-13 20:54:58 +000097sed-offsets := -e 's/^00*/0/' \
98 -e 's/^\([0-9a-fA-F]*\) . \(input_data\|input_data_end\)$$/\#define \2 0x\1/p'
99
100quiet_cmd_offsets = OFFSETS $@
101 cmd_offsets = $(NM) $< | sed -n $(sed-offsets) > $@
102
103$(obj)/offsets.h: $(obj)/compressed/vmlinux FORCE
104 $(call if_changed,offsets)
105
106targets += offsets.h
107
108AFLAGS_header.o += -I$(obj)
109$(obj)/header.o: $(obj)/offsets.h
110
H. Peter Anvin4fd06962007-07-11 12:18:56 -0700111LDFLAGS_setup.elf := -T
112$(obj)/setup.elf: $(src)/setup.ld $(SETUP_OBJS) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 $(call if_changed,ld)
114
H. Peter Anvin4fd06962007-07-11 12:18:56 -0700115OBJCOPYFLAGS_setup.bin := -O binary
H. Peter Anvin4fd06962007-07-11 12:18:56 -0700116$(obj)/setup.bin: $(obj)/setup.elf FORCE
117 $(call if_changed,objcopy)
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119$(obj)/compressed/vmlinux: FORCE
120 $(Q)$(MAKE) $(build)=$(obj)/compressed IMAGE_OFFSET=$(IMAGE_OFFSET) $@
121
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800122# Set this if you want to pass append arguments to the zdisk/fdimage/isoimage kernel
H. Peter Anvinf0be6c62008-02-04 16:48:00 +0100123FDARGS =
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800124# Set this if you want an initrd included with the zdisk/fdimage/isoimage kernel
125FDINITRD =
126
127image_cmdline = default linux $(FDARGS) $(if $(FDINITRD),initrd=initrd.img,)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129$(obj)/mtools.conf: $(src)/mtools.conf.in
130 sed -e 's|@OBJ@|$(obj)|g' < $< > $@
131
132# This requires write access to /dev/fd0
133zdisk: $(BOOTIMAGE) $(obj)/mtools.conf
134 MTOOLSRC=$(obj)/mtools.conf mformat a: ; sync
135 syslinux /dev/fd0 ; sync
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800136 echo '$(image_cmdline)' | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 MTOOLSRC=$(src)/mtools.conf mcopy - a:syslinux.cfg
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800138 if [ -f '$(FDINITRD)' ] ; then \
139 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' a:initrd.img ; \
140 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 MTOOLSRC=$(obj)/mtools.conf mcopy $(BOOTIMAGE) a:linux ; sync
142
143# These require being root or having syslinux 2.02 or higher installed
144fdimage fdimage144: $(BOOTIMAGE) $(obj)/mtools.conf
145 dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=1440
146 MTOOLSRC=$(obj)/mtools.conf mformat v: ; sync
147 syslinux $(obj)/fdimage ; sync
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800148 echo '$(image_cmdline)' | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 MTOOLSRC=$(obj)/mtools.conf mcopy - v:syslinux.cfg
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800150 if [ -f '$(FDINITRD)' ] ; then \
151 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' v:initrd.img ; \
152 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 MTOOLSRC=$(obj)/mtools.conf mcopy $(BOOTIMAGE) v:linux ; sync
154
155fdimage288: $(BOOTIMAGE) $(obj)/mtools.conf
156 dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=2880
157 MTOOLSRC=$(obj)/mtools.conf mformat w: ; sync
158 syslinux $(obj)/fdimage ; sync
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800159 echo '$(image_cmdline)' | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 MTOOLSRC=$(obj)/mtools.conf mcopy - w:syslinux.cfg
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800161 if [ -f '$(FDINITRD)' ] ; then \
162 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' w:initrd.img ; \
163 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 MTOOLSRC=$(obj)/mtools.conf mcopy $(BOOTIMAGE) w:linux ; sync
165
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800166isoimage: $(BOOTIMAGE)
167 -rm -rf $(obj)/isoimage
168 mkdir $(obj)/isoimage
Andi Kleenbf660252006-06-26 13:58:41 +0200169 for i in lib lib64 share end ; do \
170 if [ -f /usr/$$i/syslinux/isolinux.bin ] ; then \
171 cp /usr/$$i/syslinux/isolinux.bin $(obj)/isoimage ; \
172 break ; \
173 fi ; \
174 if [ $$i = end ] ; then exit 1 ; fi ; \
175 done
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800176 cp $(BOOTIMAGE) $(obj)/isoimage/linux
177 echo '$(image_cmdline)' > $(obj)/isoimage/isolinux.cfg
178 if [ -f '$(FDINITRD)' ] ; then \
179 cp '$(FDINITRD)' $(obj)/isoimage/initrd.img ; \
180 fi
181 mkisofs -J -r -o $(obj)/image.iso -b isolinux.bin -c boot.cat \
182 -no-emul-boot -boot-load-size 4 -boot-info-table \
183 $(obj)/isoimage
184 rm -rf $(obj)/isoimage
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186zlilo: $(BOOTIMAGE)
187 if [ -f $(INSTALL_PATH)/vmlinuz ]; then mv $(INSTALL_PATH)/vmlinuz $(INSTALL_PATH)/vmlinuz.old; fi
188 if [ -f $(INSTALL_PATH)/System.map ]; then mv $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi
189 cat $(BOOTIMAGE) > $(INSTALL_PATH)/vmlinuz
190 cp System.map $(INSTALL_PATH)/
191 if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi
192
H. Peter Anvin0d20bab2006-01-07 17:38:39 -0800193install:
Linus Torvaldsd274ba22006-01-10 21:09:19 -0800194 sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(BOOTIMAGE) System.map "$(INSTALL_PATH)"