forked from owenson/tiny-linux-bootloader
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sh
executable file
·55 lines (45 loc) · 1.74 KB
/
build.sh
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
#!/bin/bash -e
# Tiny Linux Bootloader
# (c) 2014- Dr Gareth Owen (www.ghowen.me). All rights reserved.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
INPUT="bflop.asm"
OUTPUT="disk.img"
KERN="../bzImage"
#RD="./big.init"
#size of kern + ramdisk
K_SZ=`stat -c %s $KERN`
#R_SZ=`stat -c %s $RD`
#padding to make it up to a sector
K_PAD=$((512 - $K_SZ % 512))
#R_PAD=$((512 - $R_SZ % 512))
nasm -o $OUTPUT -D initRdSizeDef=$R_SZ $INPUT
cp $OUTPUT bootloader.bin
cat $KERN >> $OUTPUT
if [[ $K_PAD -lt 512 ]]; then
dd if=/dev/zero bs=1 count=$K_PAD >> $OUTPUT
fi
#cat $RD >> $OUTPUT
#if [[ $R_PAD -lt 512 ]]; then
# dd if=/dev/zero bs=1 count=$R_PAD >> $OUTPUT
#fi
# make an objdump of the bootloader for debugging purposes
objdump -b binary --adjust-vma=0x7c00 -D bootloader.bin -m i8086 -M intel > objdump_out.objdump
TOTAL=`stat -c %s $OUTPUT`
if [[ $TOTAL -gt 1474560 ]]; then
echo "Warning: Floppy image exceeds 1.44mb!!!"
else
dd if=/dev/zero bs=1 count=$((1474560 - $TOTAL)) >> $OUTPUT
fi
echo "concatenated bootloader, kernel and initrd into ::> $OUTPUT"
#echo "Note, your first partition must start after sector $(($TOTAL / 512))"