blob: f632508f0651c811094104bdb88c6283ddc50812 (
plain)
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
|
#
# arch/mips/boot/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 by Ralf Baechle
#
.S.s:
$(CPP) $(CFLAGS) $< -o $*.s
.S.o:
$(CC) $(CFLAGS) -c $< -o $*.o
OBJS = milo.o a.out.o
#
# Drop some uninteresting sections in the kernel.
# This is only relevant for ELF kernels but doesn't hurt a.out
#
drop-sections = .reginfo .mdebug
strip-flags = $(addprefix --remove-section=,$(drop-sections))
#
# Fake compressed boot
#
zImage: $(CONFIGURE) mkboot $(TOPDIR)/vmlinux
$(OBJCOPY) $(strip-flags) $(TOPDIR)/vmlinux zImage.tmp
./mkboot zImage.tmp zImage
rm -f zImage.tmp
mkboot: mkboot.c
$(HOSTCC) -o $@ $^
zdisk: zImage
if [ -f /etc/remote-mcopy ]; then \
ssh rio mcopy -o - a:vmlinux <zImage; \
else \
mcopy -o zImage a:vmlinux; \
fi
dep:
clean:
rm -f zImage zImage.tmp mkboot
dummy:
include $(TOPDIR)/Rules.make
|