Index: branches/azimutz/Chazileon/i386/libsaio/console.c =================================================================== --- branches/azimutz/Chazileon/i386/libsaio/console.c (revision 410) +++ branches/azimutz/Chazileon/i386/libsaio/console.c (revision 411) @@ -97,9 +97,8 @@ pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); - *pi.str = '\0'; va_end(ap); - cursor += (pi.str - cursor); + cursor += strlen((char *)cursor); } void setupBooterLog(void) @@ -178,8 +177,7 @@ pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); - *pi.str = '\0'; - cursor += (pi.str - cursor); + cursor += strlen((char *)cursor); } va_end(ap); @@ -211,8 +209,7 @@ pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); - *pi.str = '\0'; - cursor += (pi.str - cursor); + cursor += strlen((char *)cursor); } va_end(ap); Index: branches/azimutz/Chazileon/i386/boot2/Makefile =================================================================== --- branches/azimutz/Chazileon/i386/boot2/Makefile (revision 410) +++ branches/azimutz/Chazileon/i386/boot2/Makefile (revision 411) @@ -20,7 +20,7 @@ LIBSADIR = ../libsa LIBSAIODIR = ../libsaio UTILDIR = ../util -THEME = default +THEME = embed THEMEDIR = ../../artwork/themes/$(THEME) INC = -I. -I.. -I$(SYMDIR) -I$(LIBSADIR) -I$(LIBSAIODIR) -I$(UTILDIR) ifneq "" "$(wildcard /bin/mkdirs)" Index: branches/azimutz/Chazileon/i386/util/Makefile =================================================================== --- branches/azimutz/Chazileon/i386/util/Makefile (revision 410) +++ branches/azimutz/Chazileon/i386/util/Makefile (revision 411) @@ -31,7 +31,7 @@ $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $(SYMROOT)/$(@F) machOconv.o bdmesg: bdmesg.o - $(CC) $(CFLAGS) $(LDFLAGS) -framework IOKit -framework CoreFoundation -o $(SYMROOT)/$(@F) bdmesg.o + $(CC) $(CFLAGS) $(LDFLAGS) -framework IOKit -framework CoreFoundation -mmacosx-version-min=10.5 -o $(SYMROOT)/$(@F) bdmesg.o include ../MakeInc.dir Index: branches/azimutz/CleanCut/i386/libsaio/console.c =================================================================== --- branches/azimutz/CleanCut/i386/libsaio/console.c (revision 410) +++ branches/azimutz/CleanCut/i386/libsaio/console.c (revision 411) @@ -97,9 +97,8 @@ pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); - *pi.str = '\0'; va_end(ap); - cursor += (pi.str - cursor); + cursor += strlen((char *)cursor); } void setupBooterLog(void) @@ -177,8 +176,7 @@ pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); - *pi.str = '\0'; - cursor += (pi.str - cursor); + cursor += strlen((char *)cursor); } va_end(ap); @@ -210,8 +208,7 @@ pi.str = cursor; pi.last_str = 0; prf(fmt, ap, sputc, &pi); - *pi.str = '\0'; - cursor += (pi.str - cursor); + cursor += strlen((char *)cursor); } va_end(ap); Index: branches/azimutz/CleanCut/i386/boot2/Makefile =================================================================== --- branches/azimutz/CleanCut/i386/boot2/Makefile (revision 410) +++ branches/azimutz/CleanCut/i386/boot2/Makefile (revision 411) @@ -20,7 +20,7 @@ LIBSADIR = ../libsa LIBSAIODIR = ../libsaio UTILDIR = ../util -THEME = default +THEME = embed THEMEDIR = ../../artwork/themes/$(THEME) INC = -I. -I.. -I$(SYMDIR) -I$(LIBSADIR) -I$(LIBSAIODIR) -I$(UTILDIR) ifneq "" "$(wildcard /bin/mkdirs)" Index: branches/azimutz/CleanCut/i386/util/Makefile =================================================================== --- branches/azimutz/CleanCut/i386/util/Makefile (revision 410) +++ branches/azimutz/CleanCut/i386/util/Makefile (revision 411) @@ -31,7 +31,7 @@ $(CC) $(CFLAGS) $(LDFLAGS) $(DEFINES) -o $(SYMROOT)/$(@F) machOconv.o bdmesg: bdmesg.o - $(CC) $(CFLAGS) $(LDFLAGS) -framework IOKit -framework CoreFoundation -o $(SYMROOT)/$(@F) bdmesg.o + $(CC) $(CFLAGS) $(LDFLAGS) -framework IOKit -framework CoreFoundation -mmacosx-version-min=10.5 -o $(SYMROOT)/$(@F) bdmesg.o include ../MakeInc.dir