Index: branches/azimutz/Chazi/i386/libsaio/sys.c =================================================================== --- branches/azimutz/Chazi/i386/libsaio/sys.c (revision 1091) +++ branches/azimutz/Chazi/i386/libsaio/sys.c (revision 1092) @@ -478,13 +478,13 @@ int open_bvdev(const char *bvd, const char *path, int flags) { - const struct devsw *dp; - const char *cp; - BVRef bvr; - int i; - int len; - int unit; - int partition; + const struct devsw *dp; + const char *cp; + BVRef bvr; + int i; + int len; + int unit; + int partition; if ((i = open(path, flags)) >= 0) { return i; @@ -517,7 +517,7 @@ bvr = newBootVolumeRef(dp->biosdev + unit, partition); return open_bvr(bvr, path, flags); } - } + } return -1; } Index: branches/azimutz/Chazi/i386/libsaio/platform.h =================================================================== --- branches/azimutz/Chazi/i386/libsaio/platform.h (revision 1091) +++ branches/azimutz/Chazi/i386/libsaio/platform.h (revision 1092) @@ -11,8 +11,6 @@ //Azi: this was already acting as a mini libsaio.h :P see bootstruct.h. //#include "libsaio.h" #include "libsa.h" -#include "saio_types.h" -#include "saio_internal.h" //Updt - delete these and test!!! extern bool platformCPUFeature(uint32_t); Index: branches/azimutz/Chazi/i386/boot2/drivers.c =================================================================== --- branches/azimutz/Chazi/i386/boot2/drivers.c (revision 1091) +++ branches/azimutz/Chazi/i386/boot2/drivers.c (revision 1092) @@ -279,7 +279,7 @@ { ret = GetFileInfo(dirSpec, "Extensions", &flags, &time2); - msglog("(%s) Extensions time +1 = %d\n", __FUNCTION__, time2 + 1); + msglog("(%s) Extensions time +1 = %d\n", __FUNCTION__, time2 + 1); //Azi: mine! if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeDirectory) Index: branches/azimutz/Chazi/CHANGES =================================================================== --- branches/azimutz/Chazi/CHANGES (revision 1091) +++ branches/azimutz/Chazi/CHANGES (revision 1092) @@ -29,12 +29,12 @@ - Optimized cursor spinout in textmode if no verbose mode is set - Added ram table structures definitions - Added getSmbios() a param permitting to select between orig and new smbios entries -- Changed "Default Partition" behaviour to accept only native system volumes or foreign partitions. +- Changed "Default Partition" behavior to accept only native system volumes or foreign partitions. - Added NVIDIA new NVCAP customization support and support for ION gfx cards from aserebln - Added ATI new framebuffers support and new cards from PCEFI10.6 - improved ACPI file search algo by implementing a cache. - Nvidia injection fix -- pciroot would not always return correct UID in autodection mode +- pciroot would not always return correct UID in auto dection mode - Fixed the hibernation problem in boot2/resume.c - Fixed all new booter versions with SystemType would override the facp value even if correct, now keeps the facp value if correct and no override has been done, implemented a best effort algo.