blob: dcad6507f196f369c1a904dd85b4f542d1f515bd [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070029subdir- := compressed
30
H. Peter Anvin4fd06962007-07-11 12:18:56 -070031setup-y += a20.o apm.o cmdline.o copy.o cpu.o cpucheck.o edd.o
32setup-y += header.o main.o mca.o memory.o pm.o pmjump.o
33setup-y += printf.o string.o tty.o video.o version.o voyager.o
34
35# The link order of the video-*.o modules can matter. In particular,
36# video-vga.o *must* be listed first, followed by video-vesa.o.
37# Hardware-specific drivers should follow in the order they should be
38# probed, and video-bios.o should typically be last.
39setup-y += video-vga.o
40setup-y += video-vesa.o
41setup-y += video-bios.o
H. Peter Anvin30c82642007-10-15 17:13:22 -070042
Sam Ravnborg3fbc5412007-07-17 22:27:22 +020043targets += $(setup-y)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044hostprogs-y := tools/build
45
46HOSTCFLAGS_build.o := $(LINUXINCLUDE)
47
48# ---------------------------------------------------------------------------
49
H. Peter Anvin4fd06962007-07-11 12:18:56 -070050# How to compile the 16-bit code. Note we always compile for -march=i386,
51# that way we can complain to the user if the CPU is insufficient.
Sam Ravnborga0f97e02007-10-14 22:21:35 +020052KBUILD_CFLAGS := $(LINUXINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \
H. Peter Anvin4fd06962007-07-11 12:18:56 -070053 -Wall -Wstrict-prototypes \
54 -march=i386 -mregparm=3 \
55 -include $(srctree)/$(src)/code16gcc.h \
56 -fno-strict-aliasing -fomit-frame-pointer \
57 $(call cc-option, -ffreestanding) \
58 $(call cc-option, -fno-toplevel-reorder,\
59 $(call cc-option, -fno-unit-at-a-time)) \
60 $(call cc-option, -fno-stack-protector) \
61 $(call cc-option, -mpreferred-stack-boundary=2)
Sam Ravnborg4ba7e5c2008-01-30 13:32:23 +010062KBUILD_CFLAGS += $(call cc-option,-m32)
Sam Ravnborg222d3942007-10-15 21:59:31 +020063KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
H. Peter Anvin4fd06962007-07-11 12:18:56 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065$(obj)/zImage: IMAGE_OFFSET := 0x1000
Sam Ravnborg7eebb932007-10-16 23:50:33 +020066$(obj)/zImage: asflags-y := $(SVGA_MODE) $(RAMDISK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067$(obj)/bzImage: IMAGE_OFFSET := 0x100000
Sam Ravnborg7eebb932007-10-16 23:50:33 +020068$(obj)/bzImage: ccflags-y := -D__BIG_KERNEL__
69$(obj)/bzImage: asflags-y := $(SVGA_MODE) $(RAMDISK) -D__BIG_KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070070$(obj)/bzImage: BUILDFLAGS := -b
71
72quiet_cmd_image = BUILD $@
H. Peter Anvin4fd06962007-07-11 12:18:56 -070073cmd_image = $(obj)/tools/build $(BUILDFLAGS) $(obj)/setup.bin \
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 $(obj)/vmlinux.bin $(ROOT_DEV) > $@
75
H. Peter Anvin4fd06962007-07-11 12:18:56 -070076$(obj)/zImage $(obj)/bzImage: $(obj)/setup.bin \
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 $(obj)/vmlinux.bin $(obj)/tools/build FORCE
78 $(call if_changed,image)
Coywolf Qi Hunt28948012005-06-21 17:15:15 -070079 @echo 'Kernel: $@ is ready' ' (#'`cat .version`')'
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81$(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE
82 $(call if_changed,objcopy)
83
H. Peter Anvin4fd06962007-07-11 12:18:56 -070084SETUP_OBJS = $(addprefix $(obj)/,$(setup-y))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
H. Peter Anvin4fd06962007-07-11 12:18:56 -070086LDFLAGS_setup.elf := -T
87$(obj)/setup.elf: $(src)/setup.ld $(SETUP_OBJS) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 $(call if_changed,ld)
89
H. Peter Anvin4fd06962007-07-11 12:18:56 -070090OBJCOPYFLAGS_setup.bin := -O binary
91
92$(obj)/setup.bin: $(obj)/setup.elf FORCE
93 $(call if_changed,objcopy)
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095$(obj)/compressed/vmlinux: FORCE
96 $(Q)$(MAKE) $(build)=$(obj)/compressed IMAGE_OFFSET=$(IMAGE_OFFSET) $@
97
H. Peter Anvin841b8a42006-03-26 01:36:59 -080098# Set this if you want to pass append arguments to the zdisk/fdimage/isoimage kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -070099FDARGS =
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800100# Set this if you want an initrd included with the zdisk/fdimage/isoimage kernel
101FDINITRD =
102
103image_cmdline = default linux $(FDARGS) $(if $(FDINITRD),initrd=initrd.img,)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105$(obj)/mtools.conf: $(src)/mtools.conf.in
106 sed -e 's|@OBJ@|$(obj)|g' < $< > $@
107
108# This requires write access to /dev/fd0
109zdisk: $(BOOTIMAGE) $(obj)/mtools.conf
110 MTOOLSRC=$(obj)/mtools.conf mformat a: ; sync
111 syslinux /dev/fd0 ; sync
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800112 echo '$(image_cmdline)' | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 MTOOLSRC=$(src)/mtools.conf mcopy - a:syslinux.cfg
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800114 if [ -f '$(FDINITRD)' ] ; then \
115 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' a:initrd.img ; \
116 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 MTOOLSRC=$(obj)/mtools.conf mcopy $(BOOTIMAGE) a:linux ; sync
118
119# These require being root or having syslinux 2.02 or higher installed
120fdimage fdimage144: $(BOOTIMAGE) $(obj)/mtools.conf
121 dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=1440
122 MTOOLSRC=$(obj)/mtools.conf mformat v: ; sync
123 syslinux $(obj)/fdimage ; sync
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800124 echo '$(image_cmdline)' | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 MTOOLSRC=$(obj)/mtools.conf mcopy - v:syslinux.cfg
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800126 if [ -f '$(FDINITRD)' ] ; then \
127 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' v:initrd.img ; \
128 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 MTOOLSRC=$(obj)/mtools.conf mcopy $(BOOTIMAGE) v:linux ; sync
130
131fdimage288: $(BOOTIMAGE) $(obj)/mtools.conf
132 dd if=/dev/zero of=$(obj)/fdimage bs=1024 count=2880
133 MTOOLSRC=$(obj)/mtools.conf mformat w: ; sync
134 syslinux $(obj)/fdimage ; sync
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800135 echo '$(image_cmdline)' | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 MTOOLSRC=$(obj)/mtools.conf mcopy - w:syslinux.cfg
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800137 if [ -f '$(FDINITRD)' ] ; then \
138 MTOOLSRC=$(obj)/mtools.conf mcopy '$(FDINITRD)' w:initrd.img ; \
139 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 MTOOLSRC=$(obj)/mtools.conf mcopy $(BOOTIMAGE) w:linux ; sync
141
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800142isoimage: $(BOOTIMAGE)
143 -rm -rf $(obj)/isoimage
144 mkdir $(obj)/isoimage
Andi Kleenbf660252006-06-26 13:58:41 +0200145 for i in lib lib64 share end ; do \
146 if [ -f /usr/$$i/syslinux/isolinux.bin ] ; then \
147 cp /usr/$$i/syslinux/isolinux.bin $(obj)/isoimage ; \
148 break ; \
149 fi ; \
150 if [ $$i = end ] ; then exit 1 ; fi ; \
151 done
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800152 cp $(BOOTIMAGE) $(obj)/isoimage/linux
153 echo '$(image_cmdline)' > $(obj)/isoimage/isolinux.cfg
154 if [ -f '$(FDINITRD)' ] ; then \
155 cp '$(FDINITRD)' $(obj)/isoimage/initrd.img ; \
156 fi
157 mkisofs -J -r -o $(obj)/image.iso -b isolinux.bin -c boot.cat \
158 -no-emul-boot -boot-load-size 4 -boot-info-table \
159 $(obj)/isoimage
160 rm -rf $(obj)/isoimage
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162zlilo: $(BOOTIMAGE)
163 if [ -f $(INSTALL_PATH)/vmlinuz ]; then mv $(INSTALL_PATH)/vmlinuz $(INSTALL_PATH)/vmlinuz.old; fi
164 if [ -f $(INSTALL_PATH)/System.map ]; then mv $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.old; fi
165 cat $(BOOTIMAGE) > $(INSTALL_PATH)/vmlinuz
166 cp System.map $(INSTALL_PATH)/
167 if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi
168
H. Peter Anvin0d20bab2006-01-07 17:38:39 -0800169install:
Linus Torvaldsd274ba22006-01-10 21:09:19 -0800170 sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(BOOTIMAGE) System.map "$(INSTALL_PATH)"