From: John Tsiombikas Date: Wed, 23 Jan 2019 02:20:08 +0000 (+0200) Subject: added makefile rule to create bootable CDs and removed a printf call in X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=bootcensus;a=commitdiff_plain;h=aea4c0e820b437aebb00a90b5f9fd847044f88fe added makefile rule to create bootable CDs and removed a printf call in vbetest which interfered with the video mode by attempting to change the CRTC scroll registers. --- diff --git a/Makefile b/Makefile index fcbe869..c4d724a 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ pcboot.iso: floppy.img rm -rf cdrom git archive --format=tar --prefix=cdrom/ HEAD | tar xf - cp $< cdrom - mkisofs -o $@ -V pcboot -b $< cdrom + mkisofs -o $@ -R -J -V pcboot -b $< cdrom boot.img: bootldr.bin $(bin) diff --git a/src/test/vbetest.c b/src/test/vbetest.c index 8a61516..ee7fb68 100644 --- a/src/test/vbetest.c +++ b/src/test/vbetest.c @@ -105,7 +105,6 @@ int vbetest(void) } } if(click) { - printf("click!\n"); audio_play(22050, 1); }