Add MLINKS for getgrent_r(3), getgrgid_r(3) & getgrnam_r(3).
[dragonfly.git] / test / amd64 / Makefile
blob8bdd0e6a487dc9247f5596cecb2c0c7ad00e855e
1 # Makefile - manage a qemu system for testing 64 bit DragonFly builds
3 # This Makefile will patch and build qemu, do all necessary world and
4 # kernel builds, and create a 64 bit root.img disk.
7 # require it to be specified
8 SRCDIR ?= ${.CURDIR}/../..
9 QEMU ?= qemu-0.10.1
10 ROOTSIZE ?= 512M
12 .if defined(WITHSDL)
13 QEMU_SDL_OPT ?= --extra-cflags=-I/usr/pkg/include \
14 --extra-ldflags=-L/usr/pkg/lib
15 .else
16 QEMU_SDL_OPT ?= --disable-sdl
17 .endif
19 all: help
21 scratch: qemu world32 world64 kernel64 root64 install64 sysloader
22 @echo "Run the environment with:"
23 @echo "make QEMUDIR=${QEMUDIR} run"
25 quickw: quickworld64 quickkernel64 reinstall64 reinstallkernel64 sysloader
26 @echo "Run the environment with:"
27 @echo "make QEMUDIR=${QEMUDIR} run"
29 quick: quickkernel64 reinstallkernel64
30 @echo "Run the environment with:"
31 @echo "make QEMUDIR=${QEMUDIR} run"
33 help:
34 @echo "Setup Instructions:"
35 @echo ""
36 @echo " setenv QEMUDIR target_dir"
37 @echo ""
38 @echo "Meta target components:"
39 @echo ""
40 @echo " help - this help"
41 @echo " clean - clean up"
42 @echo " scratch - build and install everything from scratch"
43 @echo " (this is absolutely everything, except gdb64)"
44 @echo " quick - incremental kernel build & reinstall"
45 @echo " quickw - incremental world & kernel build & reinstall"
46 @echo " run - run qemu with QEMUDIR/root.img - curses mode"
47 @echo " xrun - run qemu with QEMUDIR/root.img - X Window mode"
48 @echo " mount - mount QEMUDIR/root.img at QEMUDIR/root"
49 @echo " umount - unmount"
50 @echo " gdb64 - create /usr/loca/bin/gdb64 - debug 64 bit bins"
51 @echo ""
52 @echo "Individual target components:"
53 @echo ""
54 @echo " qemu - fetch, patch, and build qemu"
55 @echo " Specify WITHSDL=yes to build X support"
56 @echo " world32 - build the 32 bit world from scratch"
57 @echo " world64 - build the 64 bit world from scratch"
58 @echo " kernel64 - build the 64 bit kernel from scratch"
59 @echo " root64 - create a new, empty root.img"
60 @echo " install64 - install a 64 bit world & kernel"
61 @echo " into root.img"
62 @echo " quickworld64 - incremental rebuild world64"
63 @echo " quickkernel64 - incremental rebuild kernel64"
64 @echo " reinstall64 - reinstall world64 into root.img"
65 @echo " (just the installworld piece)"
66 @echo " reinstallkernel64 - reinstall kernel64 into root.img"
67 @echo " sysloader - reinstall 32-bit system loader"
68 @echo " (in case the 64 bit loader fails,"
69 @echo " the 32 bit loader can be used)"
70 @echo ""
72 # Unmount everything, de-configured VN, and clean up.
73 # (check handles umounting/deconfiguring)
75 clean: check
76 rm -rf ${QEMUDIR}/${QEMU}.tar.gz ${QEMUDIR}/${QEMU} \
77 ${QEMUDIR}/${QEMU}-dragonfly.patch \
78 ${QEMUDIR}/root.img ${QEMUDIR}/root
80 # Build qemu for Intel 32 and 64 bit environments
82 # If configuring with sdl support from pkgsrc add the following
83 # options to the configure command:
85 # --extra-cflags=-I/usr/pkg/include
86 # --extra-ldflags=-L/usr/pkg/lib
88 qemu: checkq sdl
89 .if !exists(${QEMUDIR}/${QEMU}.tar.gz)
90 cd ${QEMUDIR} && \
91 fetch http://download.savannah.gnu.org/releases/qemu/${QEMU}.tar.gz
92 .endif
93 .if !exists(${QEMUDIR}/${QEMU}-dragonfly.patch)
94 cd ${QEMUDIR} && \
95 fetch http://pkgbox.dragonflybsd.org/patches/${QEMU}-dragonfly.patch
96 .endif
97 rm -rf ${QEMUDIR}/${QEMU}
98 cd ${QEMUDIR} && tar xvzpf ${QEMU}.tar.gz
99 cd ${QEMUDIR}/${QEMU} && patch -p1 < ${QEMUDIR}/${QEMU}-dragonfly.patch
100 cd ${QEMUDIR}/${QEMU} && \
101 ./configure --disable-gfx-check \
102 ${QEMU_SDL_OPT} \
103 --disable-kqemu \
104 --enable-system \
105 --disable-aio \
106 --disable-kvm \
107 --target-list=i386-softmmu,x86_64-softmmu
108 cd ${QEMUDIR}/${QEMU} && CCVER=gcc34 gmake
109 cd ${QEMUDIR}/${QEMU} && CCVER=gcc34 gmake install
111 # SDL dependancies
113 sdl:
114 .if defined(WITHSDL)
115 @echo "SDL enabled"
116 pkg_info libX11 > /dev/null 2>&1 || pkg_radd libX11
117 pkg_info SDL > /dev/null 2>&1 || pkg_radd SDL
118 .else
119 @echo "SDL not enabled"
120 .endif
122 # Build the 32 and 64 bit worlds and the 64 bit kernel
125 world32: checkq
126 cd ${SRCDIR} && make -j 4 buildworld
128 world64: checkq
129 cd ${SRCDIR} && \
130 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 buildworld
132 kernel64: checkq
133 cd ${SRCDIR} && \
134 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 KERNCONF=JG64 \
135 buildkernel
137 # Quick build - just rebuild the kernel quickly
140 quickworld64: checkq
141 cd ${SRCDIR} && \
142 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 quickworld
144 quickkernel64: checkq
145 cd ${SRCDIR} && \
146 make TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 KERNCONF=JG64 \
147 quickkernel
149 # Build and mount an empty filesystem for the emulated root disk
152 root64: check
153 vnconfig -c -T -S ${ROOTSIZE} -s labels \
154 `cat ${QEMUDIR}/vn.which` ${QEMUDIR}/root.img
155 dd if=/dev/zero of=/dev/`cat ${QEMUDIR}/vn.which` bs=32k count=4
156 fdisk -IB `cat ${QEMUDIR}/vn.which`
157 disklabel -r -w `cat ${QEMUDIR}/vn.which`s1 auto
158 disklabel `cat ${QEMUDIR}/vn.which`s1 > ${QEMUDIR}/label.tmp
159 echo 'a: * 0 4.2BSD' >> ${QEMUDIR}/label.tmp
160 disklabel -R `cat ${QEMUDIR}/vn.which`s1 ${QEMUDIR}/label.tmp
161 disklabel -B `cat ${QEMUDIR}/vn.which`s1
162 newfs /dev/`cat ${QEMUDIR}/vn.which`s1a
163 mkdir -p ${QEMUDIR}/root
165 mount: check
166 vnconfig -c -s labels `cat ${QEMUDIR}/vn.which` ${QEMUDIR}/root.img
167 fsck -p /dev/`cat ${QEMUDIR}/vn.which`s1a
168 mount /dev/`cat ${QEMUDIR}/vn.which`s1a ${QEMUDIR}/root
169 @echo "Mounted ${QEMUDIR}/root"
171 umount: check
173 # Install a fresh 64 bit world & distribution, and kernel
176 install64: mount
177 cd ${SRCDIR} && \
178 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 \
179 DESTDIR=${QEMUDIR}/root installworld
180 cd ${SRCDIR}/etc && \
181 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 \
182 DESTDIR=${QEMUDIR}/root distribution
183 echo '/dev/ad1s1a / ufs rw 1 1' > ${QEMUDIR}/root/etc/fstab
184 echo 'proc /proc procfs rw 0 0' >> ${QEMUDIR}/root/etc/fstab
185 echo 'vfs.root.mountfrom="ufs:ad1s1a"' > ${QEMUDIR}/root/boot/loader.conf
186 (egrep -v '^console' ${QEMUDIR}/root/etc/ttys; echo 'console "/usr/libexec/getty Pc" cons25 on secure') > ${QEMUDIR}/root/etc/ttys.new
187 mv -f ${QEMUDIR}/root/etc/ttys.new ${QEMUDIR}/root/etc/ttys
188 cd ${SRCDIR} && \
189 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 \
190 DESTDIR=${QEMUDIR}/root KERNCONF=JG64 \
191 NO_MODULES= \
192 installkernel
193 @echo "WARNING: 64 bit loader installed, if it doesn't work"
194 @echo " then use 'sysloader' to install the 32 bit one"
196 # Quick reinstall - just install a new kernel on top of an existing image
199 reinstall64: mount
200 @echo "NOTE: Installing native 32 bit loader into root.img."
201 @echo " This loader should still be able to boot the"
202 @echo " 64 bit kernel"
203 cd ${SRCDIR} && \
204 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 \
205 DESTDIR=${QEMUDIR}/root installworld
207 reinstallkernel64: mount
208 cd ${SRCDIR} && \
209 make -j 4 TARGET_ARCH=amd64 TARGET_PLATFORM=pc64 \
210 DESTDIR=${QEMUDIR}/root KERNCONF=JG64 \
211 NO_MODULES= \
212 installkernel
214 sysloader: mount
215 cp /boot/loader ${QEMUDIR}/root/boot/loader
216 sync
218 # Run qemu on our image in 64 bit mode. Make sure we are unmounted so
219 # we do not compete against the emulated kernel when writing to root.img.
220 # (check does this for us)
222 run: check
223 cd ${QEMUDIR} && qemu-system-x86_64 -curses -hda ${QEMUDIR}/root.img \
224 -m 128 -no-fd-bootchk
226 xrun:
227 .if !defined(DISPLAY)
228 @(echo "Variable DISPLAY not set. Is X running?"; exit 1)
229 .endif
230 cd ${QEMUDIR} && qemu-system-x86_64 -hda ${QEMUDIR}/root.img \
231 -m 128 -no-fd-bootchk
233 rungdb: check
234 @echo "RUN WITH: run -curses -hda root.img"
235 cd ${QEMUDIR} && gdb qemu-system-x86_64
237 # build a gdb capable of debugging 64 bit binaries
239 gdb64:
240 cd /usr/src/gnu/usr.bin/gdb && (make clean; make TARGET_ARCH=amd64)
241 cp /usr/obj/usr/src/gnu/usr.bin/gdb/gdb/gdb /usr/local/bin/gdb64
242 cd /usr/src/gnu/usr.bin/gdb && make clean
244 # Make sure we are not mounted and the VN device is unconfigured,
246 # Find an unused VN device but do not do anything with it yet.
248 checkq:
249 .if !defined(QEMUDIR)
250 @(echo "must specify QEMUDIR=target or as an environment variable"; exit 1)
251 .endif
252 .if exists(${QEMUDIR})
253 @echo "${QEMUDIR} found"
254 .else
255 mkdir -p ${QEMUDIR}
256 .endif
258 check: checkq
259 .if exists(${QEMUDIR}/vn.which)
260 -umount ${QEMUDIR}/root > /dev/null 2>&1
261 -vnconfig -u `cat ${QEMUDIR}/vn.which` > /dev/null 2>&1
262 rm -f ${QEMUDIR}/vn.which
263 .endif
264 (vnconfig -l | fgrep "not in use" > /dev/null) || \
265 (echo "Cannot find unused VN"; exit 1)
266 vnconfig -l | fgrep "not in use" | \
267 cut -f 1 -d : | head -1 > ${QEMUDIR}/vn.which
268 egrep '^vn' ${QEMUDIR}/vn.which > /dev/null || \
269 (echo "VN device selection is bad"; exit 1)