blob: 4ba4774cab2843d963d5621255b8747121bdc91c (
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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
SYSLINUX=$IMGPATH/usr/bin/syslinux
if [ ! -f $SYSLINUX ]; then
echo "$SYSLINUX doesn't exist"
exit 1
fi
prepareBootImage() {
dd if=/dev/zero bs=1k count=$BOOTDISKSIZE of=/$MBD_TMPIMAGE 2>/dev/null
mkdosfs -C $MBD_TMPIMAGE $BOOTDISKSIZE >/dev/null
$SYSLINUX $MBD_TMPIMAGE
mount -o loop -t msdos $MBD_TMPIMAGE $MBD_BOOTTREE
(cd $BOOTDISKDIR; find . ! -name "*.msg" -maxdepth 1 ! -type d | cpio --quiet -p $MBD_BOOTTREE)
cp $MBD_FSIMAGE $MBD_BOOTTREE/initrd.img
cp $KERNELROOT/boot/vmlinuz-* $MBD_BOOTTREE/vmlinuz
if [ -d $BOOTDISKDIR/$BOOTLANG ]; then
# fb console and kon don't get along...
if [ "$BOOTLANG" = "ja_JP" ]; then
sed -e "s/ vga=.*//g" < $MBD_BOOTTREE/syslinux.cfg > $MBD_BOOTTREE/syslinux.cf2
mv -f $MBD_BOOTTREE/syslinux.cf2 $MBD_BOOTTREE/syslinux.cfg
fi
if [ -n $BOOTDIR ]; then
sed -e "s/initrd.img/initrd.img lang=$BOOTDIR/g" < $MBD_BOOTTREE/syslinux.cfg > $MBD_BOOTTREE/syslinux.cf2
mv -f $MBD_BOOTTREE/syslinux.cf2 $MBD_BOOTTREE/syslinux.cfg
fi
for file in $BOOTDISKDIR/$BOOTLANG/*.msg; do
filename=`basename $file`
sed -e "s/@VERSION@/$VERSION/g" $file > $MBD_BOOTTREE/$filename
done
if [ $? != 0 ]; then
echo $0: Failed to copy messages from $BOOTDISKDIR/$BOOTLANG to $MBD_BOOTTREE.
umount $MBD_BOOTTREE
rm -rf $MBD_BOOTTREE $MBD_TMPIMAGE
exit 1
fi
else
for file in $BOOTDISKDIR/*.msg; do
filename=`basename $file`
sed -e "s/@VERSION@/$VERSION/g" $file > $MBD_BOOTTREE/$filename
done
if [ $? != 0 ]; then
echo $0: Failed to copy messages from $BOOTDISKDIR to $MBD_BOOTTREE.
umount $MBD_BOOTTREE
rm -rf $MBD_BOOTTREE $MBD_TMPIMAGE
exit 1
fi
fi
}
# LATEUSBMODS go in the second stage
USBMODS="usb-ohci usb-uhci hid keybdev usb-storage"
LATEUSBMODS="mousedev"
IDEMODS=""
SCSIMODS="sd_mod sr_mod"
SECSTAGE="agpgart msdos vfat raid0 raid1 raid5 ext3 reiserfs $IDEMODS $SCSIMODS $LATEUSBMODS"
COMMONMODULES="vfat $USBMODS"
LOCALMODULES="$COMMONMODULES BusLogic aic7xxx megaraid ncr53c8xx
sym53c8xx $IDEMODS $SCSIMODS"
NETWORKMODULES="$COMMONMODULES nfs 3c59x ne2k-pci
eepro100 tulip pcnet32"
# sis900 e100 hp100 8139too"
PCMCIAMAINMODULES="$COMMONMODULES nfs $IDEMODS $SCSIMODS"
makeinitrd --initrdto $TOPDESTPATH/dosutils/autoboot/initrd.img \
--initrdsize 2250 \
--loaderbin loader-local \
--modules "$LOCALMODULES"
makeinitrd --initrdto $TOPDESTPATH/images/pxeboot/initrd.img \
--initrdsize 2250 \
--loaderbin loader-network \
--modules "$NETWORKMODULES"
# XXX hack hack
PCMCIAMODULES_EXCLUDED="
apa1480_cb
iflash2+_mtd
iflash2_mtd
memory_cb
memory_cs
parport_cs
parport_pc
parport
serial_cs
serial_cb
sram_mtd
"
PCMCIAMODULES_EXCLUDED_SED="sed"
for m in $PCMCIAMODULES_EXCLUDED
do
PCMCIAMODULES_EXCLUDED_SED="$PCMCIAMODULES_EXCLUDED_SED -e 's/$m//g'"
done
PCMCIAMODULES=`echo $PCMCIAMODULES | eval "$PCMCIAMODULES_EXCLUDED_SED"`
makeinitrd --initrdto $TOPDESTPATH/images/initrd-pcmcia.img \
--pcmcia \
--initrdsize 2350 \
--loaderbin loader-pcmcia \
--modules "$PCMCIAMAINMODULES"
#for I in $BOOTDISKDIR; do
for I in `find $BOOTDISKDIR -type d`; do
BOOTLANG=`basename $I`
BOOTDIR=`basename $I | cut -d'_' -f1`
if [ $BOOTLANG = "boot" ]; then
BOOTLANG=""
BOOTDIR=""
elif [ $BOOTLANG = "ja_JP" ]; then
# this is handled below.
continue
fi
makebootdisk --kernelto $TOPDESTPATH/dosutils/autoboot/vmlinuz \
--bootdisksize 1440 \
--imagename $BOOTDIR/boot.img \
--initrd $TOPDESTPATH/dosutils/autoboot/initrd.img
makebootdisk --kernelto $TOPDESTPATH/images/pxeboot/vmlinuz \
--bootdisksize 1440 \
--imagename $BOOTDIR/bootnet.img \
--initrd $TOPDESTPATH/images/pxeboot/initrd.img
makebootdisk --imagename $BOOTDIR/pcmcia.img \
--bootdisksize 1440 \
--initrd $TOPDESTPATH/images/initrd-pcmcia.img
done
rm -f $TOPDESTPATH/images/initrd-pcmcia.img
# --- Japanese
BOOTLANG="ja_JP"
BOOTDIR="ja"
makebootdisk --bootdisksize 1440 \
--imagename ja/boot.img \
--initrdflags '--japanese
--initrdsize 2950 \
--loaderbin loader-local-kon \
--modules "$LOCALMODULES"'
makebootdisk --bootdisksize 1440 \
--imagename ja/bootnet.img \
--initrdflags '--japanese
--initrdsize 2950 \
--loaderbin loader-network-kon \
--modules "$NETWORKMODULES"'
makebootdisk --imagename ja/pcmcia.img \
--bootdisksize 1440 \
--initrdflags '--japanese
--pcmcia \
--initrdsize 3232 \
--loaderbin loader-pcmcia-kon \
--modules "$PCMCIAMAINMODULES"'
makedriverdisk --padsize 1440 "Supplemental Drivers" "drivers" "+scsi +net"
makedriverdisk --padsize 1440 "Supplemental CDROM controllers" "oldcdrom" "parport_pc parport +cdrom"
makedriverdisk --padsize 1440 "rhpcmcia" "pcmciadd" "$PCMCIAMODULES"
unset BOOTLANG
unset BOOTDIR
makeinitrd --initrdto $TOPDESTPATH/dosutils/autoboot/initrd.img \
--initrdsize 4100 \
--pcmcia \
--loaderbin loader-pcmcia \
--modules "$COMMONMODULES $PCMCIAMODULES nfs =scsi $IDEMODS
$SCSIMODS"
makebootdisk --kernelto $TOPDESTPATH/dosutils/autoboot/vmlinuz \
--bootdisksize 2880 \
--imagename ../dosutils/autoboot/cdboot.img \
--initrd $TOPDESTPATH/dosutils/autoboot/initrd.img
makeinitrd --initrdto $TOPDESTPATH/dosutils/autoboot/initrd-ja.img \
--initrdsize 4100 \
--japanese \
--loaderbin loader-pcmcia-kon \
--pcmcia \
--modules "$COMMONMODULES $PCMCIAMODULES nfs =scsi $IDEMODS
$SCSIMODS"
makebootdisk --kernelto $TOPDESTPATH/dosutils/autoboot/vmlinuz \
--bootdisksize 2880 \
--imagename ../dosutils/autoboot/cdboot-ja.img \
--initrd $TOPDESTPATH/dosutils/autoboot/initrd-ja.img
makemainmodules "=scsi =net $SECSTAGE"
makeinstimage "netstg" "=scsi $SECSTAGE"
makeinstimage "hdstg" "=net $SECSTAGE"
makemainimage "stage2" "cramfs"
|