]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - release/tools/vmimage.subr
Enable the textmode console by default for VM images,
[FreeBSD/FreeBSD.git] / release / tools / vmimage.subr
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5 #
6 # Common functions for virtual machine image build scripts.
7 #
8
9 export PATH="/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin"
10 trap "cleanup" INT QUIT TRAP ABRT TERM
11
12 write_partition_layout() {
13         if [ -z "${NOSWAP}" ]; then
14                 SWAPOPT="-p freebsd-swap/swapfs::1G"
15         fi
16
17         case "${TARGET}:${TARGET_ARCH}" in
18                 amd64:amd64 | i386:i386)
19                         mkimg -s gpt -b /boot/pmbr \
20                                 -p freebsd-boot/bootfs:=/boot/gptboot \
21                                 ${SWAPOPT} \
22                                 -p freebsd-ufs/rootfs:=${VMBASE} \
23                                 -o ${VMIMAGE}
24                         ;;
25                 powerpc:powerpc*)
26                         mkimg -s apm \
27                                 -p apple-boot/bootfs:=/boot/boot1.hfs \
28                                 ${SWAPOPT} \
29                                 -p freebsd-ufs/rootfs:=${VMBASE} \
30                                 -o ${VMIMAGE}
31                         ;;
32                 *)
33                         # ENOTSUPP
34                         return 1
35                         ;;
36         esac
37
38         return 0
39 }
40
41 err() {
42         printf "${@}\n"
43         cleanup
44         return 1
45 }
46
47 cleanup() {
48         umount ${DESTDIR}/dev 2>/dev/null
49         umount ${DESTDIR}
50         if [ ! -z "${mddev}" ]; then
51                 mdconfig -d -u ${mddev}
52         fi
53
54         return 0
55 }
56
57 vm_create_base() {
58         # Creates the UFS root filesystem for the virtual machine disk,
59         # written to the formatted disk image with mkimg(1).
60
61         mkdir -p ${DESTDIR}
62         truncate -s ${VMSIZE} ${VMBASE}
63         mddev=$(mdconfig -f ${VMBASE})
64         newfs -j /dev/${mddev}
65         mount /dev/${mddev} ${DESTDIR}
66
67         return 0
68 }
69
70 vm_install_base() {
71         # Installs the FreeBSD userland/kernel to the virtual machine disk.
72
73         cd ${WORLDDIR} && \
74                 make DESTDIR=${DESTDIR} \
75                 installworld installkernel distribution || \
76                 err "\n\nCannot install the base system to ${DESTDIR}."
77
78         echo '# Custom /etc/fstab for FreeBSD VM images' \
79                 > ${DESTDIR}/etc/fstab
80         echo '/dev/gpt/rootfs   /       ufs     rw      1       1' \
81                 >> ${DESTDIR}/etc/fstab
82         if [ -z "${NOSWAP}" ]; then
83                 echo '/dev/gpt/swapfs  none    swap    sw      0       0' \
84                         >> ${DESTDIR}/etc/fstab
85         fi
86
87         # Set hw.vga.textmode=1, with the assumption that the hypervisor
88         # will not be capable of using the graphics console mode. 
89         echo '# Comment the next line to enable graphical console mode' \
90                 >> ${DESTDIR}/boot/loader.conf
91         echo 'hw.vga.textmode=1' >> ${DESTDIR}/boot/loader.conf
92
93         mkdir -p ${DESTDIR}/dev
94         mount -t devfs devfs ${DESTDIR}/dev
95         chroot ${DESTDIR} /usr/bin/newaliases
96         chroot ${DESTDIR} /etc/rc.d/ldconfig forcestart
97         umount ${DESTDIR}/dev
98
99         cp /etc/resolv.conf ${DESTDIR}/etc/resolv.conf
100
101         return 0
102 }
103
104 vm_extra_install_base() {
105         # Prototype.  When overridden, runs extra post-installworld commands
106         # as needed, based on the target virtual machine image or cloud
107         # provider image target.
108
109         return 0
110 }
111
112 vm_extra_enable_services() {
113         if [ ! -z "${VM_RC_LIST}" ]; then
114                 for _rcvar in ${VM_RC_LIST}; do
115                         echo ${_rcvar}_enable="YES" >> ${DESTDIR}/etc/rc.conf
116                 done
117         fi
118
119         return 0
120 }
121
122 vm_extra_install_packages() {
123         if [ -z "${VM_EXTRA_PACKAGES}" ]; then
124                 return 0
125         fi
126         mkdir -p ${DESTDIR}/dev
127         mount -t devfs devfs ${DESTDIR}/dev
128         chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
129                 /usr/sbin/pkg bootstrap -y
130         chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
131                 /usr/sbin/pkg install -y ${VM_EXTRA_PACKAGES}
132         umount ${DESTDIR}/dev
133
134         return 0
135 }
136
137 vm_extra_install_ports() {
138         # Prototype.  When overridden, installs additional ports within the
139         # virtual machine environment.
140
141         return 0
142 }
143
144 vm_extra_pre_umount() {
145         # Prototype.  When overridden, installs additional ports within the
146         # virtual machine environment.
147
148         if [ -e ${DESTDIR}/usr/local/sbin/pkg ]; then
149                 chroot ${DESTDIR} env ASSUME_ALWAYS_YES=yes \
150                         /usr/local/sbin/pkg clean -y -a
151         fi
152         rm -f ${DESTDIR}/etc/resolv.conf
153
154         return 0
155 }
156
157 vm_umount_base() {
158         i=0
159         sync
160         while ! umount ${DESTDIR}/dev ${DESTDIR}; do
161                 i=$(( $i + 1 ))
162                 if [ $i -ge 10 ]; then
163                         # This should never happen.  But, it has happened.
164                         msg="Cannot umount(8) ${DESTDIR}\n"
165                         msg="${msg}Something has gone horribly wrong."
166                         err "${msg}"
167                 fi
168                 sleep 1
169         done
170
171         return 0
172 }
173
174 vm_create_disk() {
175         echo "Creating image...  Please wait."
176         echo
177
178         write_partition_layout || return 1
179
180         return 0
181 }
182
183 vm_extra_create_disk() {
184
185         return 0
186 }
187