1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
#
# aboot/Makefile
#
# This file is subject to the terms and conditions of the GNU General Public
# License. See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (c) 1995, 1996 by David Mosberger (davidm@cs.arizona.edu)
#
# location of linux kernel sources (must be absolute path):
KSRC = /usr/src/linux
VMLINUX = $(KSRC)/vmlinux
VMLINUXGZ = $(KSRC)/arch/alpha/boot/vmlinux.gz
# for userspace testing
#TESTING = yes
# for boot testing
#CFGDEFS = -DDEBUG_ISO -DDEBUG_ROCK -DDEBUG
# root, aka prefix
root =
bindir = $(root)/sbin
bootdir = $(root)/boot
mandir = $(root)/usr/share/man
export
#
# There shouldn't be any need to change anything below this line.
#
LOADADDR = 20000000
ABOOT_LDFLAGS = -static -N -Taboot.lds
CC = gcc
TOP = $(shell pwd)
ifeq ($(TESTING),)
CPPFLAGS = $(CFGDEFS) -I$(TOP)/include -I$(KSRC)/include
CFLAGS = $(CPPFLAGS) -D__KERNEL__ -mcpu=ev4 -Os -Wall -Wcast-align -mno-fp-regs -ffixed-8
else
CPPFLAGS = -DTESTING $(CFGDEFS) -I$(TOP)/include -I$(KSRC)/include
CFLAGS = $(CPPFLAGS) -O -g3 -Wall -D__KERNEL__ -ffixed-8
endif
ASFLAGS = $(CPPFLAGS)
.c.s:
$(CC) $(CFLAGS) -S -o $*.s $<
.s.o:
$(AS) -o $*.o $<
.c.o:
$(CC) $(CFLAGS) -c -o $*.o $<
.S.s:
$(CC) $(ASFLAGS) -D__ASSEMBLY__ -traditional -E -o $*.o $<
.S.o:
$(CC) $(ASFLAGS) -D__ASSEMBLY__ -traditional -c -o $*.o $<
NET_OBJS = net.o
DISK_OBJS = disk.o fs/ext2.o fs/ufs.o fs/dummy.o fs/iso.o
ifeq ($(TESTING),)
ABOOT_OBJS = \
head.o aboot.o cons.o utils.o \
zip/misc.o zip/unzip.o zip/inflate.o
else
ABOOT_OBJS = aboot.o zip/misc.o zip/unzip.o zip/inflate.o
endif
LIBS = lib/libaboot.a
ifeq ($(TESTING),)
all: diskboot
else
all: aboot
endif
diskboot: bootlx sdisklabel/sdisklabel sdisklabel/swriteboot \
tools/e2writeboot tools/isomarkboot tools/abootconf \
tools/elfencap
netboot: vmlinux.bootp
bootlx: aboot tools/objstrip
tools/objstrip -vb aboot bootlx
install-man:
make -C doc/man install
install-man-gz:
make -C doc/man install-gz
install: tools/abootconf tools/e2writeboot tools/isomarkboot \
sdisklabel/swriteboot install-man
install -d $(bindir) $(bootdir)
install -c -s tools/abootconf $(bindir)
install -c -s tools/e2writeboot $(bindir)
install -c -s tools/isomarkboot $(bindir)
install -c -s sdisklabel/swriteboot $(bindir)
install -c bootlx $(bootdir)
installondisk: bootlx sdisklabel/swriteboot
sdisklabel/swriteboot -vf0 /dev/sda bootlx vmlinux.gz
ifeq ($(TESTING),)
aboot: $(ABOOT_OBJS) $(DISK_OBJS) $(LIBS)
$(LD) $(ABOOT_LDFLAGS) $(ABOOT_OBJS) $(DISK_OBJS) -o $@ $(LIBS)
else
aboot: $(ABOOT_OBJS) $(DISK_OBJS) $(LIBS)
$(CC) $(ABOOT_OBJS) $(DISK_OBJS) -o $@ $(LIBS)
endif
vmlinux.bootp: net_aboot.nh $(VMLINUXGZ) net_pad
cat net_aboot.nh $(VMLINUXGZ) net_pad > $@
net_aboot.nh: net_aboot tools/objstrip
tools/objstrip -vb net_aboot $@
net_aboot: $(ABOOT_OBJS) $(ABOOT_OBJS) $(NET_OBJS) $(LIBS)
$(LD) $(ABOOT_LDFLAGS) $(ABOOT_OBJS) $(NET_OBJS) -o $@ $(LIBS)
net_pad:
dd if=/dev/zero of=$@ bs=512 count=1
clean: sdisklabel/clean tools/clean lib/clean
rm -f aboot abootconf net_aboot net_aboot.nh net_pad vmlinux.bootp \
$(ABOOT_OBJS) $(DISK_OBJS) $(NET_OBJS) bootlx \
include/ksize.h vmlinux.nh
distclean: clean
find . -name \*~ | xargs rm -f
lib/%:
make -C lib $* CPPFLAGS="$(CPPFLAGS)" TESTING="$(TESTING)"
tools/%:
make -C tools $* CPPFLAGS="$(CPPFLAGS)"
sdisklabel/%:
make -C sdisklabel $* CPPFLAGS="$(CPPFLAGS)"
vmlinux.nh: $(VMLINUX) tools/objstrip
tools/objstrip -vb $(VMLINUX) vmlinux.nh
include/ksize.h: vmlinux.nh
echo "#define KERNEL_SIZE `ls -l vmlinux.nh | awk '{print $$5}'` > $@
dep:
|