images: Make phony Windows image for testing.
[libguestfs.git] / images / guest-aux / make-windows-img.sh
1 #!/bin/bash -
2 # libguestfs
3 # Copyright (C) 2010 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # Make a Windows image which is enough to fool the inspection heuristics.
20
21 export LANG=C
22 set -e
23
24 # Create a disk image.
25 ../fish/guestfish <<'EOF'
26 sparse windows.img.tmp 512M
27 run
28
29 # Format the disk.
30 part-init /dev/sda mbr
31 part-add /dev/sda p 64     524287
32 part-add /dev/sda p 524288    -64
33
34 # Phony boot loader filesystem.
35 mkfs ntfs /dev/sda1
36
37 # Phony root filesystem.
38 mkfs ntfs /dev/sda2
39
40 # Enough to fool inspection API.
41 mount-options "" /dev/sda2 /
42 mkdir-p /Windows/System32/Config
43
44 upload guest-aux/windows-software /Windows/System32/Config/SOFTWARE
45 upload guest-aux/windows-system /Windows/System32/Config/SYSTEM
46
47 upload bin-win32.exe /Windows/System32/cmd.exe
48
49 mkdir "/Program Files"
50 touch /autoexec.bat
51
52 EOF
53
54 mv windows.img.tmp windows.img