3 # Copyright (C) 2010-2011 Red Hat Inc.
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.
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.
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.
19 # Make a Windows image which is enough to fool the inspection heuristics.
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
30 echo "Warning: cannot create windows.img because there is no NTFS"
31 echo "support in this build of libguestfs. Just touching the output"
38 # Create a disk image.
39 ../run ../fish/guestfish <<EOF
40 sparse windows.img.tmp 512M
44 part-init /dev/sda mbr
45 part-add /dev/sda p 64 524287
46 part-add /dev/sda p 524288 -64
49 pwrite-device /dev/sda "1234" 0x01b8
51 # Phony boot loader filesystem.
54 # Phony root filesystem.
57 # Enough to fool inspection API.
58 mount-options "" /dev/sda2 /
59 mkdir-p /Windows/System32/Config
61 upload ${SRCDIR}/guest-aux/windows-software /Windows/System32/Config/SOFTWARE
62 upload ${SRCDIR}/guest-aux/windows-system /Windows/System32/Config/SYSTEM
64 upload ${SRCDIR}/bin-win32.exe /Windows/System32/cmd.exe
66 mkdir "/Program Files"
71 mv windows.img.tmp windows.img