daemon: debug segv correct use of dereferencing NULL.
[libguestfs.git] / tests / guests / guest-aux / make-windows-img.sh
1 #!/bin/bash -
2 # libguestfs
3 # Copyright (C) 2010-2011 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 # If the currently compiled libguestfs doesn't support
25 # ntfs-3g/ntfsprogs then we cannot create a Windows phony image.
26 # Nothing actually uses windows.img in the standard build so we can
27 # just 'touch' it and emit a warning.
28 if ! ../../run ../../fish/guestfish -a /dev/null run : available "ntfs3g ntfsprogs"; then
29   echo "***"
30   echo "Warning: cannot create windows.img because there is no NTFS"
31   echo "support in this build of libguestfs.  Just touching the output"
32   echo "file instead."
33   echo "***"
34   touch windows.img
35   exit 0
36 fi
37
38 # Create a disk image.
39 ../../run ../../fish/guestfish <<EOF
40 sparse windows.img.tmp 512M
41 run
42
43 # Format the disk.
44 part-init /dev/sda mbr
45 part-add /dev/sda p 64     524287
46 part-add /dev/sda p 524288    -64
47
48 # Disk ID.
49 pwrite-device /dev/sda "1234" 0x01b8
50
51 # Phony boot loader filesystem.
52 mkfs ntfs /dev/sda1
53
54 # Phony root filesystem.
55 mkfs ntfs /dev/sda2
56
57 # Enough to fool inspection API.
58 mount-options "" /dev/sda2 /
59 mkdir-p /Windows/System32/Config
60
61 upload ${SRCDIR}/guest-aux/windows-software /Windows/System32/Config/SOFTWARE
62 upload ${SRCDIR}/guest-aux/windows-system /Windows/System32/Config/SYSTEM
63
64 upload ${SRCDIR}/../data/bin-win32.exe /Windows/System32/cmd.exe
65
66 mkdir "/Program Files"
67 touch /autoexec.bat
68
69 EOF
70
71 mv windows.img.tmp windows.img