VirtualBox

source: vbox/trunk/src/VBox/VMM/testcase/mkdsk.sh@ 4672

Last change on this file since 4672 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1#!/bin/sh
2#
3# Copyright (C) 2006-2007 innotek GmbH
4#
5# This file is part of VirtualBox Open Source Edition (OSE), as
6# available from http://www.virtualbox.org. This file is free software;
7# you can redistribute it and/or modify it under the terms of the GNU
8# General Public License as published by the Free Software Foundation,
9# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
10# distribution. VirtualBox OSE is distributed in the hope that it will
11# be useful, but WITHOUT ANY WARRANTY of any kind.
12
13if [ "x$3" == "x" ]; then
14
15 echo "syntax error"
16 echo "syntax: $0 imagename <size-in-KBs> <init prog> [tar files]"
17 echo ""
18 echo "Simples qemu boot image is archived by only specifying an statically"
19 echo "linked init program and using the dev.tar.gz file to create devices."
20 echo "The boot linux in qemu specifying the image as -hda. Use the -kernel"
21 echo "option to specify a bzImage kernel image to use, and specify"
22 echo "-append root=/dev/hda so the kernel will mount /dev/hda and look"
23 echo "for /sbin/init there."
24 echo ""
25 echo "Example:"
26 echo " sh ./mkdsk.sh foo.img 2048 ~/VBox/Tree/out/linux/debug/bin/tstProg1 dev.tar.gz"
27 echo " qemu -hda foo.img -m 32 -kernel ~/qemutest/linux-test/bzImage-2.4.21 -append root=/dev/hda"
28 exit 1
29fi
30
31image=$1
32size=$2
33init=$3
34
35sizebytes=`expr $size '*' 1024`
36cyls=`expr 8225280 / $sizebytes`
37echo $cyls
38
39echo "* Creating $image of $size kb...."
40rm -f $image
41dd if=/dev/zero of=$image count=$size bs=1024 || exit 1
42
43echo "* Formatting with ext2..."
44/sbin/mkfs.ext2 $image || exit 1
45
46echo "* Mounting temporarily at ./tmpmnt..."
47mkdir -p tmpmnt
48sudo mount $image ./tmpmnt -t ext2 -o loop=/dev/loop7 || exit 1
49
50# init
51echo "* Copying $init to sbin/init..."
52mkdir tmpmnt/sbin
53sudo cp $init tmpmnt/sbin/init
54sudo chmod 755 tmpmnt/sbin/init
55
56shift
57shift
58shift
59while [ "x$1" != "x" ];
60do
61 echo "* Untarring $1 to disk..."
62 sudo tar -xzv -C tmpmnt -f $1
63 shift
64done
65
66echo "* Unmouning tmpmnt..."
67sudo umount tmpmnt
68rmdir tmpmnt
69echo "* Done! (Perhaps even successfully so...)"
70echo " 'root=/dev/hda' remember :-)"
71exit 0
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette