]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - lfs/grub
Fixed a typo in lfs/grub.
[people/ms/ipfire-3.x.git] / lfs / grub
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 PKG_NAME = grub
28 VER = 0.97
29
30 THISAPP = $(PKG_NAME)-$(VER)
31 DL_FILE = $(THISAPP).tar.gz
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 TARGET = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
35
36 CFLAGS =
37 CXXFLAGS =
38
39 ###############################################################################
40 # Top-level Rules
41 ###############################################################################
42
43 objects = $(DL_FILE) grub-0.94-i2o.patch grub-0.95-moreraid.patch \
44 grub-0.93-special-device-names.patch grub-0.95-splash-error-term.patch \
45 grub-0.95-xpmjunk.patch grub-0.93-graphics-bootterm.patch \
46 grub-0.91-splashimagehelp.patch grub-0.95-graphics.patch \
47 $(THISAPP)-disk_geometry-1.patch grub-0.93-configfile.patch \
48 $(THISAPP)-256byte_inode-1.patch
49
50 install : $(TARGET)
51
52 download : $(patsubst %,$(DIR_DL)/%,$(objects))
53
54 $(patsubst %,$(DIR_DL)/%,$(objects)) :
55 @$(LOAD)
56
57 ###############################################################################
58 # Installation Details
59 ###############################################################################
60
61 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
62 @$(PREBUILD)
63 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
64 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-disk_geometry-1.patch
65 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.95-graphics.patch
66 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.91-splashimagehelp.patch
67 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.93-graphics-bootterm.patch
68 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.95-xpmjunk.patch
69 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.95-splash-error-term.patch
70 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.93-special-device-names.patch
71 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.95-moreraid.patch
72 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.94-i2o.patch
73 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/grub-0.93-configfile.patch
74 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-256byte_inode-1.patch
75
76 cd $(DIR_APP) && autoupdate
77
78 cd $(DIR_APP) && ./configure --prefix=/usr
79
80 cd $(DIR_APP) && make -j $(PRALLELISM)
81 cd $(DIR_APP) && make install
82
83 mkdir -vp /boot/grub
84 cp -v /usr/lib/grub/i386-pc/stage{1,2} /boot/grub
85
86 for i in $(DIR_SRC)/config/bootloader/{grub.conf,splash.xpm.gz}; do \
87 [ -f $$i ] && cp -vf $$i /boot/grub; \
88 done
89
90 @rm -rf $(DIR_APP)
91 @$(POSTBUILD)