1 | #!/bin/sh
|
---|
2 | ## @file
|
---|
3 | # Obsolete?
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | if [ "x$3" == "x" ]; then
|
---|
29 |
|
---|
30 | echo "syntax error"
|
---|
31 | echo "syntax: $0 imagename <size-in-KBs> <init prog> [tar files]"
|
---|
32 | echo ""
|
---|
33 | echo "Simples qemu boot image is archived by only specifying an statically"
|
---|
34 | echo "linked init program and using the dev.tar.gz file to create devices."
|
---|
35 | echo "The boot linux in qemu specifying the image as -hda. Use the -kernel"
|
---|
36 | echo "option to specify a bzImage kernel image to use, and specify"
|
---|
37 | echo "-append root=/dev/hda so the kernel will mount /dev/hda and look"
|
---|
38 | echo "for /sbin/init there."
|
---|
39 | echo ""
|
---|
40 | echo "Example:"
|
---|
41 | echo " sh ./mkdsk.sh foo.img 2048 ~/VBox/Tree/out/linux/debug/bin/tstProg1 dev.tar.gz"
|
---|
42 | echo " qemu -hda foo.img -m 32 -kernel ~/qemutest/linux-test/bzImage-2.4.21 -append root=/dev/hda"
|
---|
43 | exit 1
|
---|
44 | fi
|
---|
45 |
|
---|
46 | image=$1
|
---|
47 | size=$2
|
---|
48 | init=$3
|
---|
49 |
|
---|
50 | sizebytes=`expr $size '*' 1024`
|
---|
51 | cyls=`expr 8225280 / $sizebytes`
|
---|
52 | echo $cyls
|
---|
53 |
|
---|
54 | echo "* Creating $image of $size kb...."
|
---|
55 | rm -f $image
|
---|
56 | dd if=/dev/zero of=$image count=$size bs=1024 || exit 1
|
---|
57 |
|
---|
58 | echo "* Formatting with ext2..."
|
---|
59 | /sbin/mkfs.ext2 $image || exit 1
|
---|
60 |
|
---|
61 | echo "* Mounting temporarily at ./tmpmnt..."
|
---|
62 | mkdir -p tmpmnt
|
---|
63 | sudo mount $image ./tmpmnt -t ext2 -o loop=/dev/loop7 || exit 1
|
---|
64 |
|
---|
65 | # init
|
---|
66 | echo "* Copying $init to sbin/init..."
|
---|
67 | mkdir tmpmnt/sbin
|
---|
68 | sudo cp $init tmpmnt/sbin/init
|
---|
69 | sudo chmod 755 tmpmnt/sbin/init
|
---|
70 |
|
---|
71 | shift
|
---|
72 | shift
|
---|
73 | shift
|
---|
74 | while [ "x$1" != "x" ];
|
---|
75 | do
|
---|
76 | echo "* Untarring $1 to disk..."
|
---|
77 | sudo tar -xzv -C tmpmnt -f $1
|
---|
78 | shift
|
---|
79 | done
|
---|
80 |
|
---|
81 | echo "* Unmounting tmpmnt..."
|
---|
82 | sudo umount tmpmnt
|
---|
83 | rmdir tmpmnt
|
---|
84 | echo "* Done! (Perhaps even successfully so...)"
|
---|
85 | echo " 'root=/dev/hda' remember :-)"
|
---|
86 | exit 0
|
---|