Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Enoch/CHANGES

1- cparm : Rock - Paper - Scissors algo
2- Bronya : Improve support for AMD CPU.
3- Bungo : Added "machine-signature"
4- Zenith432 : Protect timing code in scan_cpu() from interrupts, use bios for sleep()
5- Zenith432 : Fix setupChosenNode, Tweak asm.s
6- Zenith432 : Change identity snprintf to strncpy + misc printf issues
7- cparm : Implement strlcat()
8- Zenith432 : Sanitize 16-bit assembly
9- Zenith432 : Fix bug in malloc_init, use bios for enableA20()
10- meklort : Slightly improve decive selection name - add os version.
11- Zenith432 : Interrupt Management
12- Bungo : Added ability to auto-select last booted partition as the boot volume.
13- Bungo : Added MacOSVerCurrent and MacOSVer2Int function to use instead of macros.
14- Bungo : Fixed bug in gDarwinBuildVerStr extracting.
15- Bungo : Fixed fixedUUID function (convert.c smbios.c).
16- Bungo : Added Logging start time.
17- Bungo : Added getRTCdatetime() Int 1Ah function 02h - RTC service.
18- Zenith432 : Use caching with ExFat filesystem.
19- Zenith432 : Add turning off USB legacy for XHCI (XHCILegacyOff).
20- ErmaC : C6 & C7 States credits to Clover Team.
21- ErmaC : define recursive cpu series for BrandString.
22- Zenith432 : saio_types.h, biosfn.c - minor typo in bios-defined data structure that isn't actually used.
23fake_efi.c - eliminate redundant scan of bt(0,0) in setupSmbiosConfigFile. loadConfigFile already does a fall-back scan of bt(0,0), so another scan isn't needed.
24sys.c - While scanning a volume, getOSVersion looks for 5 files and switches back-n-forth between hd(X,Y)/....SystemVersion.plist on the newly scanned volume and bt(0,0)/hd(X,Y)/...SystemVersion.plist - which is an invalid path - should always return an error.
25- Zenith432 : Change to disk.c - Prevent getOSVersion from looking for SystemVersion.plist on FAT32 or exFAT file systems - since those filesystems never serve as system volumes.
26UFS may serve as system volume, but there's no driver to read from it.
27Change to sys.c - Eliminate a dubious recursion in diskScanBootVolumes(). It recognises the filesystem, then calls getOSVersion, which attempts to open 5 files in order to find SystemVersion - then when parsing the device name - calls diskScanBootVolumes() - as a form of on-demand scanning. This doesn't result in an infinite recursion - because the volume is already in the map. However, this auto-scan is only useful if user enters an explicit hd(X,Y) device-spec that has never been scanned before - an unlikely occurrence.
28- Zenith432 : Patch from Issue 388, init_module_system() in modules.c dereferences NULL pointer
29- Zenith432 : Full implementation of exfat support for Chameleon's boot2 stage.
30- Micky1979 : Incorporated force umount option -u (boot1-install.c)
31- Zenith432 : Replace boot0 with boot0xg. Now boot0xg has all features of previous boot0. ( http://www.insanelymac.com/forum/topic/302938-exfat-volume-boot-record-for-chameleon )
32- ErmaC : Add UseIntelHDMI for hda-gfx = onboard-1 or 2 that vale will be injected into the GFX0 and HDEF devices. credits Clover Team
33- ErmaC : Improve gma detection for HD4600
34- cparm : Merge (security, stability, bugs fixes) improvements.
35- Zenith432 : Completed patch for ExFAT support ( http://www.insanelymac.com/forum/topic/302938-exfat-volume-boot-record-for-chameleon )
36- Zenith432 : add EXFAT boot support by Zenith432
37- zenith432 : Merge patch from issue 386 (boot2 does not know how to read files from FAT partitions on GPT)
38- meklort : Update laoder.h to latest, declare gMI global, Load modules passed in via the multiboot header / first bootloader,
39Fix mboot.h include, Add ?log command to print out bdmesg without needing Wait=y, Add slightly more debugging for modules.
40- ErmaC : Rename CPU_MODEL_xxx into CPUID_MODEL_xxx follow Apple source name
41- ErmaC : Rename decompress_lzvn function to lzvn_decode follow Apple source name.
42- ErmaC : Add more chameleon UI stuff (default) made by blackosx
43- ErmaC : Split out states generator from acpi_patcher (Credits to Clover Teams)
44- ErmaC : Merged proposed patch by N3 (Boot from vanilla Recovery HD, Installation DMG)
45- bitshoveler : Fix "sed: RE error: illegal byte sequence", which turns out to be from feeding sed a TIFF file (buildpkg.sh)
46- bitshoveler : Remove "-x" option from "ld" command which breaks build under newer Xcode versions (MakeInc.dir)
47- bitshoveler : CacheInit(), CacheRead() prototypes: use u_int32_t instead of long where appropriate (saio_internal.h)
48- bitshoveler : Improved defensiveness against malloc failure (disk.c)
49- bitshoveler : Use u_int32_t instead of long where appropriate (cache.c)
50- bitshoveler : Make some constant arrays static; other minor fixes (acpi_patcher.c)
51- bitshoveler : Make 'buffer' arg to aml_add_buffer 'const char *', was just 'char *' (aml_generator)
52- bitshoveler : Various fixes to problems exposed by Clang static analyzer (picopng.c)
53- ErmaC : Rollback changes for msdos.c (2327) thx to bltz
54- bitshoveler : Remove "-x" option from "ld" command which breaks build under newer Xcode versions (/i386/modules/MakeInc.dir)
55- bitshoveler : Comment out some unused functions by expanding "#if UNUSED" conditional (stringTable.c)
56- bitshoveler : Comment out unused static functions, which cause build to fail in "release" mode (vbe.c)
57- bitshoveler : Fix null pointer handling (nvidia.c)
58- bitshoveler : Only write terminating null char if malloc succeeded (strndup.c)
59- bitshoveler : Fix memory leak (bdmesg.c)
60- ErmaC : (re)enable klibc module
61- ErmaC : Merge Recovery Icons(png) courtesy of blackosx
62- ErmaC : Merge Yosemite patch (ready from June 2014) Thanks all involved in the test and develop;
63Special thanks: Alex J, viv xix, zenith432 from http://forge.voodooprojects.org/p/chameleon/issues/375/
64Testing and improvements: Pike R. Alpha, ErmaC, Bungo, blackosx, Micky1979, crazybirdy, oldnapalm, janek202, MinusZwei and Andy Vandijck.
65
66- Pike R. Alpha : dynamic "random-seed" implementation ( http://www.insanelymac.com/forum/topic/301350-lets-make-random-seed-really-random/ )
67- ErmaC : getCPUTick() helper function ( http://www.insanelymac.com/forum/topic/301350-lets-make-random-seed-really-random/ )
68- ErmaC : Add Yosemite Icons detection for chameleon UI
69- blackosx : Add chameleon UI Icons for Yosemite
70- ErmaC : Use macro instead of full checkOSVersion
71- viv xix : Move checkOSVersion into boot header
72- ErmaC : define macro for OS X Versions
73- Slice and Clover Team : Replace "NULL" terminated strings and fit Boot2 Sectors size
74- ErmaC : Update bootargs
75- crazybirdy : Fit length for "Loading Darwin"
76- meklort : Update align directives to 2^(old_align)
77- Ermac : Bump svn to 2.3
78- ErmaC : Update efi Header
79- cparm : buffer BPS
80- cparm : devprop_generate_string optimized by cparm
81- ErmaC : Update CPUID and change conditional logic.
82- ErmaC : Typo & ID names
83- meklort : Make compile on gcc w/ errors enabled.
84- bitshoveler : Remove the '-x' option from the offending 'ld' command
85- Jief : Makefile dependency missing for boot0 and boot1h
86- ErmaC : Temp disable klibc module
87- meklort : Silence output.
88- meklort : Add --no-print-directory.
89- meklort : Replace \t with tab.
90- ErmaC : Update Chameleon.xcodeproj
91- ErmaC : Merge LZVN decompression routine by MinusZwei (C Conversion) based on works from Pike R. Alpha and AnV Software (Andy Vandijck).
92- Bungo : Loading custom ECDT.aml, Darwin version string printing, clean boot-args, change firmware rev. to real Mac (0x0001000a), added kernel-compatibility, boot-file, boot-args, machine-signature, random-seed DT properties & some minor changes.
93- ErmaC : Merge tja's patch http://forum.voodooprojects.org/index.php/topic,5951.0.html
94- bitshoveler : Optimized basic string functions strlen, strncmp, strncat, strcat
95- ErmaC : Replaced sprintf with snprintf in spd.c.
96- bitshoveler : Fixed inadvertent text buffer overflow in getDDRSerial
97- bitshoveler : optimize get_hda_controller_name()
98- Bungo : One of the changes as of rev2284 is boot option SystemId has now been deprecated. Instead use key SMsystemuuid in smbios.plist.
99- bitshoveler : Defend against buffer overruns
100- bitshoveler : Fix memory leak, defend against buffer overruns, add a check for malloc() failure
101- bitshoveler : getMemoryInfoString: defend against buffer overruns, change O(n^2) algorithm to O(n)
102- bitshoveler : Add closedir() to match opendir() call; relocate a malloc() call to fix a memory leak on error; better defense against buffer overruns
103- bitshoveler : Improve robustness against buffer overruns
104- bitshoveler : Add closedir() for every opendir() call, make more robust against buffer overruns
105- bitshoveler : Fix memory leak
106- bitshoveler : Fix cppcheck detected memory leak and error, make more robust against buffer overrun
107- bitshoveler : get_pci_dev_path: get rid of tmp buffer, use snprintf, improved O(n) algorithm instead of O(n^2) (whoopee); dump_pci_dt: hack fix for printf format string vs. args mismatch
108- bitshoveler : Fix memory leak; use snprintf instead of sprintf to make more robust
109- bitshoveler : Fix badly formed comment inside #ifdef
110- bitshoveler : setup_gma_devprop: fix memory leak
111- bitshoveler : setup_nhm: fix cppcheck error
112- bitshoveler : Correct cppcheck detected errors, make more robust against errors
113- bitshoveler : AllocateMemoryRange: fix cppcheck detected memory leak
114- bitshoveler : search_and_get_acpi_fd: fix pointer-to-temporary return problem; use snprintf instead of sprintf to prevent buffer overflows
115- bitshoveler : sym_expand_string_value(): fix cppcheck errors; more to be done here
116- bitshoveler : append_string(): fix cppcheck errors
117- bitshoveler : conf_write_autoconf(): fix cppcheck errors
118- bitshoveler : Fix memory leak for new_layout in main()
119- bitshoveler : Implement snprintf(); implement missing zero-fill in strncpy()
120- bitshoveler : Use original *BSD source for strlcpy()
121- ErmaC: Port from Enoch the support for IVY Bridge and Haswell Intel Graphics cards. http://www.insanelymac.com/forum/topic/288241-intel-hd4000-and-haswell-inject-aaplig-platform-id/
122- 2255: ErmaC add Skip flag key for Intel/nVidia/ATi from Enoch
123- 2252: revert define processors name to match with xnu kernel name
124- 2252: Merge from Enoch the Geoff Seeley patch http://forge.voodooprojects.org/p/chameleon/issues/59/
125- 2251: bdmesg can show Chameleon and Clover boot logs
126- 2248: Infos about lack for 32/64 bit (Credits to Pike R. Alpha)
127- 2248: Fix issue booting x86 after rev.2175 (Credits to Bronxteck, Alex Burma and Leon).
128- 2245: ErmaC : Add new CPU Model IDs
129- 2245: Add boot support to 10.9 (thx old napalm)
130- 2245: ErmaC : Update gui Icons OS detection
131- 2245: Update default theme Icon set (thx BlackOsx)
132- 2243: Add Linux GPT Partition Label
133- 2234: Fix menuBVR initialization problem
134- Implement ErmaC's HDAEnabler.dylib module
135- Fix Bug in the loop that look for an ATI card. Credits to Jief Luce
136- Fix extension without kPropOSBundleRequired property weren't loaded. Credits to Jief Luce
137- Fix Revision mismatch http://forge.voodooprojects.org/p/chameleon/issues/330/
138- ErmaC : Improve PCI info. Interface program and device revision.
139- Fix Possible bug in i386/libsaio/device_inject.c devprop_add_device() http://forge.voodooprojects.org/p/chameleon/issues/319/
140- Fix warnings/errors from new llvm/clang (xcode 4.6)
141- Fix base64 decode, fixes Issue http://forge.voodooprojects.org/p/chameleon/issues/320/
142- meklort : FileNVRAM module import
143- Merge more cparm's (security, stability, bugs fixes) improvements from his branch.
144- cparm : Added two boot options for High resolution display and reboot on kernel panic
145- cparm : Added a workaroud for Xcode 4.4.x compatibility 504B030414030100630004731141000000007D0000008B00000003000B0062696E01990700020041450308001AED80DA50DF6080B0390FE095B3BC129E1FC27C104EC97897EF27CD1175766CB18C66FF42EFB7023911BDFD5E4BC9AEEC32FF3473963F70B255581D7B74DE9F
146- cparm : Fixed a buffer overflow in the plist loader
147- Add more nVidia and Ati Device and Subdevice IDs.
148- Substitutes some simpler command in place of md which fixes this first issue
149 credits to bltz http://forge.voodooprojects.org/p/chameleon/issues/279/
150- Fix crash with missing *_o.png image
151 credits to bltz http://forge.voodooprojects.org/p/chameleon/issues/280/
152- General code cleanups.
153- This revision is devoted to Samantha, AKA DHP or Revogirl in the OSx86 scene.
154 A young talent we lost prematurely.
155 Part of her work will now live on in the Chameleon source code.
156 Changes: code cleaned, improvements taken from Revoboot.
157 http://www.insanelymac.com/forum/index.php?showtopic=259090
158- Apply patch by Andrey B http://forge.voodooprojects.org/p/chameleon/issues/270/
159- cparm : Added a Sata module, known as YellowIconFixer in my branch, useful to fix yellow icon issue (can also fix an issue with the apple's dvd player application in moutain lion)
160- cparm : Ported the nvidia plist helper (less time to spend on the device id more time to code :-) )
161- Added Recovery Icon for Default Theme (TODO) (credits to blackosx).
162- Merge more cparm's (security, stability, bugs fixes) improvements from his branch.
163 http://forge.voodooprojects.org/p/chameleon/source/tree/HEAD/branches/cparm
164- Merge "Restart fix Removed" from trunk r1992 by Slice's patch
165- Added nVidia process sub-dev ids.
166- Merge EnableHDMIAudio changes from commit 1950 by Cosmosis Jones.
167- Merge patch by Geoff Seeley http://forge.voodooprojects.org/p/chameleon/issues/59/
168- Apply patch by Michael Seydl http://forge.voodooprojects.org/p/chameleon/issues/48/
169- Apply patch by Michael Seydl http://forge.voodooprojects.org/p/chameleon/issues/247/
170- Apply patch by rafi rafi http://forge.voodooprojects.org/p/chameleon/issues/246/
171- Added ID for Radeon HD5570 and some subID: http://forge.voodooprojects.org/p/chameleon/issues/243/
172- Merge cparm's (security, stability, bugs fixes) improvements from his branch.
173- Added ID and correct FB for: http://forge.voodooprojects.org/p/chameleon/issues/238/
174- Added next coming CHIPSET and ID definition (Mosts of it commented) ML?
175 (found via netkas.org): http://lists.freedesktop.org/archives/dri-devel/2012-March/020388.html
176- Added boot support for Mountain Lion 10.8 (credits to ErmaC) & updated the default theme (credits to blackosx)
177- cparm : Fixed naming convention for raid hfs devices in gui
178- Added support for using UUIDs with ext2 filesystems (credits to bitz): http://forge.voodooprojects.org/p/chameleon/issues/208/
179- Added Guerrero's patch on gui.c: http://forge.voodooprojects.org/p/chameleon/issues/178/
180- cparm : Ported the OS detection to the trunk, updated the default theme to v 1.1 (credit to blackosx)
181- Merge correction for "Invalid package length algorithm in aml_generator.c" (credits to rphilipson)
182 http://forum.voodooprojects.org/index.php/topic,2297.0.html
183- Added scorpius's patch (to get an unstretched boot screen for nVidia cards on DVI) in boot0.s,
184 disabled by default: http://forum.voodooprojects.org/index.php/topic,2158.0.html
185- Added exFAT volume label support (FAT64) support (credit to dmazar):
186 http://forum.voodooprojects.org/index.php/topic,2095.0.html
187- disableIRQs() http://www.insanelymac.com/forum/index.php?s=&showtopic=255866&view=findpost&p=1677779
188 Port of original patch by: CPARM (who basically did this in boot.c) Thanks!
189 The ACPI specification dictates that the 8259 (PC-AT compatible) vectors
190 must be disabled (that is, masked) when enabling the ACPI APIC operation
191 but this isn't done (apparently) on all mobo's and thus we do that here.
192- Added AtiPorts option to GraphicsEnabler, so users can override the default number of ports. It proved
193 to be useful when used to limit the number of ports that a framebuffer registers, which seems to be a
194 requirement on laptops that can only use 2 ports at the same time.
195 Thanks to Akbar for testing and AniV also for the tip:
196 http://forum.voodooprojects.org/index.php/topic,1959.msg10402.html#msg10402
197- Added NVidia ION AHCI controllers dev id to AHCIPortInjector kext.
198 Forgot to mention source on the commit: http://forum.voodooprojects.org/index.php/topic,1170.0.html
199- Renamed com.apple.Boot.plist to org.chameleon.Boot.plist.
200- Added "ShowInfo" key (enabled by default for now), which enables/disables the display of
201 partition and resolution related info, on the Gui.
202 This info may not play well with some custom themes.
203- Modules can now be selected between not compiled, compiled into chameleon, or compiled as modules.
204- New makefile + configuration system.
205- Added the BOOT2_MAX_LENGTH constant in memory.h. This is now used in mboot.c to relocate the correct
206 number of bytes for boot2.
207- Added new ATi/AMD Graphics Card Enabler.
208- Added new SMBIOS patcher.
209Includes changes to "manufacter" keys, from SM*manufacter to SM*manufacturer.
210- Added module system.
211- Added automatic P-States & C-States generation for native power management.
212- Added Booter Log Dump Tool
213- Added Booter message Logging (":/boot-log" ioreg property)
214- Removed -x32 option, use arch=i386 instead
215- Added automatic SMBusspeed detection for lga1156 core i5/7 cpus
216- Added new iMac11,1 sbios default model for lga1156 core i5/17 mobos
217- md0 code. Notified xnu when an md ramdisk is specified
218- Added rollover image support for selected device icons.
219 Use device_<type>_o.png in theme folder. Credits goes to Blackosx.
220- Revisited theme resource embedding. Using the device_<type> icons are optional with
221 the exception of device_generic.
222- Optimized memory detection speed
223- Added displaying source device and partition number for file read operations.
224- Increased boot2's maximum size from 383.5k to 447.5k.
225 Updated stage 1 loaders for handling the new size limit.
226- Added alternate format for setting the default partition. The user can specify the selected
227 volume UUID for the "Default Partition" key.
228- Implemented SPD memory automatic detection and injection,seems to work really great ...
229- Factorized code to prepare a dynamic memory detection algorithm ...
230- Optimized smbios table address search
231- Optimized cursor spinout in textmode if no verbose mode is set
232- Added ram table structures definitions
233- Added getSmbios() a param permitting to select between orig and new smbios entries
234- Changed "Default Partition" behavior to accept only native system volumes or foreign partitions.
235- Added NVIDIA new NVCAP customization support and support for ION gfx cards from aserebln
236- Added ATI new framebuffers support and new cards from PCEFI10.6
237- improved ACPI file search algo by implementing a cache.
238- Nvidia injection fix
239- pciroot would not always return correct UID in auto detection mode
240- Fixed the hibernation problem in boot2/resume.c
241- Fixed all new booter versions with SystemType would override the facp value even if correct,
242 now keeps the facp value if correct and no override has been done, implemented a best effort algo.
243 for maximizing the chance to get the most correct value before we decide to use a fixed value (1=desktop)
244- Fixed display cosmetics of UUID, now a convert.c file contains all
245 conversions api, to be completed by function that we should reuse.
246
247- Fixed SystemType would be always forced to a value, now optionally changed
248 only if overridden
249- Kept SystemID as the only option to change manually the system-id
250 For theses reasons, SystemId from bootConfig and SMUUID from smbiosConfig are now DEPRECATED.
251
252- Integrated JrCs fadt patch (kept for RC5 the existing DSDT.aml retry algo that disappeared in his patch,
253 should be more discussed for RC6)
254- Added JrCs modified convention name change to coding_standards
255- Now malloc (ex. MALLOC in Asere patch) is renamed malloc(size) and is an alias
256 to safe_malloc(size, file, line) with _FILE_ and _LINE_ preprocessor definitions
257- Added a new 'Rename Partition Feature', now permitting to rename partition
258 like 'System reserved' to a more meaningful name
259- Added SystemID option permitting to change the System UUID to a fixed value.
260- Added the PciRoot auto detection feature imported from pcefi10.5
261- Added automatic "system-id" injection from dmi bios, also compatible
262 with SystemID boot option and former SMUUID from smbios,plist
263- Added "system-type' automatic injection (1=Desktop) plus override possibility
264 with the new system-type option in bootConfig
265- Added SMserial and SMproductname new options for smbios.plist
266- Merged with asere patch, while keeping my fake_efi.c changes, and adding a new
267 stringForKey() API, also changed the DT__XXXX() set of functions
268 to handle const char * values instead of char*.
269

Archive Download this file

Revision: 2706