all:
@echo "make rpm Build the virt-p2v RPM"
@echo "make build Build the live CD ISO"
- @echo "make boot [HDA=hda.img] [HDB=hdb.img] [ISO=livecd.iso]"
+ @echo "make boot [HDA=hda.img] [HDB=hdb.img] [ISO=livecd.iso] [SERIAL=yes]"
@echo " Boot built/named ISO (uses qemu)"
@echo "make update Update an existing live CD ISO with new"
@echo " virt-p2v script, without doing full rebuild"
ifneq ($(HDB),)
QEMU_ARGS += -hdb $(HDB)
endif
+SERIAL = none
+QEMU_ARGS += -serial $(SERIAL)
boot:
$(QEMU) $(QEMU_ARGS)
cp /var/lib/xen/images/rhel5gax32fv.img .
make boot HDA=rhel5gax32fv.img
+
+
+Serial console
+----------------------------------------------------------------------
+
+With livecd-tools >= 018, the CD should enable the serial console
+(ttyS0, 9600 8N1).
+
+You can test this with:
+ make boot [...] SERIAL=yes