Chameleon

Chameleon Commit Details

Date:2012-07-09 22:41:48 (11 years 9 months ago)
Author:armel cadet-petit
Commit:2007
Parents: 2006
Message:Fixed a bug in the bundle modules
Changes:
M/branches/cparm/i386/libsaio/modules.c
M/branches/cparm/TODO
M/branches/cparm/CHANGES

File differences

branches/cparm/TODO
11
22
33
4
5
6
47
58
69
TODO List for Chameleon Boot Loader
====================================
- Move acpicodec to the IndustryStandard acpi efi library
- split nvidia, gma and ati code into separate modules
- move device_inject, MBR (OSX works better on Guid partition theme anyway), winfs, bsdfs, ext2fs, befs, and the command lspci, memory, more and video into modules
- Implement a pool allocator, so each module will run and allocate memory in there own pool, de-alloc all allocated memory by the module,
branches/cparm/CHANGES
1
2
13
24
35
- Fixed a bug in the bundle dependency dispatcher
- security fixes in printf.c
- Fixed a weird bug in boot arguments that could prevent 10.8 to boot
branches/cparm/i386/libsaio/modules.c
18881888
18891889
18901890
1891
1891
18921892
18931893
18941894
{
if (module->willLoad > BundlePriorityInit)
{
gLowestLoadPriority = MIN(module->willLoad, BundlePriorityLowestPriority);
gLowestLoadPriority = MIN(MAX(module->willLoad,gLowestLoadPriority), BundlePriorityLowestPriority);
}
module = module->nextModule;
}

Archive Download the corresponding diff file

Revision: 2007