Forum: 10.X
09-29-2009, 08:11 PM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-29-2009, 07:11 PM
|
|
Replies: 49
Views: 72,716
Well well well...
I had posted it on...
Well well well...
I had posted it on InsanelyMac too but it appears to be gone.
Guess I won't release anything on InsanelyMac anymore since they delete my threads without any reasons...
Oh well......
|
Forum: 10.X
09-29-2009, 07:01 PM
|
|
Replies: 49
Views: 72,716
|
Forum: 10.X
09-29-2009, 06:41 PM
|
|
Replies: 49
Views: 72,716
I've checked and this is wrong...
replace as...
I've checked and this is wrong...
replace as follows:
Scope (_PR)
{
Processor (CPU0, 0x00, 0x00000810, 0x06) {}
Processor (CPU1, 0x01, 0x00000000, 0x00) {}
Processor (CPU2, 0x02, 0x00000000,...
|
Forum: 10.X
09-29-2009, 06:36 PM
|
|
Replies: 80
Views: 97,274
I also found a way to do it by removing -Werror...
I also found a way to do it by removing -Werror and making sure it doesn't use xcrun for the tools in makedefs/makeinc.cmd + various Makefiles
I've been thinking of writing a little xcrun tool which...
|
Forum: 10.X
09-29-2009, 06:32 PM
|
|
Replies: 80
Views: 97,274
PE_parse_boot_arg should be replaced with...
PE_parse_boot_arg should be replaced with PE_parse_boot_argn
example: PE_parse_boot_arg("argument", &var) -> PE_parse_boot_argn("argument", &var, sizeof(var))
PADL_ and PADR_ you should look up and...
|
Forum: 10.X
09-29-2009, 01:40 PM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-29-2009, 01:39 PM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-29-2009, 12:25 PM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-29-2009, 11:14 AM
|
|
Replies: 80
Views: 97,274
I'm not sure where they are in but if they are...
I'm not sure where they are in but if they are for example in osfmk/i386/mach_traps.h
you #include <i386/mach_traps.h>
Just an example...
Check the base path and include it before the definitions...
|
Forum: 10.X
09-29-2009, 09:15 AM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-29-2009, 01:13 AM
|
|
Replies: 1
Views: 5,963
|
Forum: 10.X
09-29-2009, 12:21 AM
|
|
Replies: 8
Views: 15,013
AppleSMBIOS-38 for Snow Leopard
My newest release of AppleSMBIOS for SL.
Thanks to SaCleoCheater for recompiling the sources :cool:
Enjoy... ;)
Download including sources:...
|
Forum: 10.X
09-28-2009, 11:51 PM
|
|
Replies: 49
Views: 72,716
|
Forum: 10.X
09-28-2009, 10:42 PM
|
|
Replies: 12
Views: 12,727
|
Forum: 10.X
09-28-2009, 07:57 PM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-28-2009, 12:11 PM
|
|
Replies: 49
Views: 72,716
|
Forum: 10.X
09-28-2009, 12:07 PM
|
|
Replies: 12
Views: 12,727
cd into build/Release
./apb_decrypt...
cd into build/Release
./apb_decrypt <encrypted_bin> <decrypted_bin>
./apb_encrypt <unencrypted_bin> <encrypted_bin>
same for apb_encrypt_legal or apb_decrypt_legal
./smc_read
for testing...
|
Forum: 10.X
09-28-2009, 11:59 AM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-28-2009, 11:57 AM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-28-2009, 11:56 AM
|
|
Replies: 80
Views: 97,274
|
Forum: 10.X
09-27-2009, 10:32 AM
|
|
Replies: 49
Views: 72,716
|
Forum: 10.X
09-27-2009, 10:31 AM
|
|
Replies: 12
Views: 12,727
I have remade the tools apb_encrypt and...
I have remade the tools apb_encrypt and apb_decrypt and smc_read
the ones indicated as "legal" query the SMC
Get them from: http://rapidshare.com/files/285582619/SMC_Tools.zip
|
Forum: 10.X
09-27-2009, 08:38 AM
|
|
Replies: 49
Views: 72,716
|
Forum: 10.X
09-27-2009, 08:32 AM
|
|
Replies: 80
Views: 97,274
getsectdatafromheader is declared in...
getsectdatafromheader is declared in <libkern/kernel_mach_header.h>
you should put #include <libkern/kernel_mach_header.h> into the failing header
That should fix this up
|