Chameleon Applications

Chameleon Applications Commit Details

Date:2011-07-15 23:54:22 (12 years 9 months ago)
Author:ErmaC
Commit:317
Parents: 316
Message:Update the script for Boot.plist... from com.apple.Boot.plist to org.chameleon.Boot.plist
Changes:
M/branches/iFabio/Chameleon/package/Scripts/Advanced/UseMemDetect/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/SMBIOSdefaults/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/GUI/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/LegacyLogo/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1600x900x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/EthernetBuiltIn/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/InstantMenu/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/Wake/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/BootBanner/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/UHCIreset/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/arch/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1280x960x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1024x768x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/GenerateCStates/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1920x1200x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/Wait/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/UseNvidiaROM/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/ForceWake/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1280x1024x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/UseAtiROM/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1920x1080x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Resolutions/1680x1050x32/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/GraphicsEnabler/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/QuietBoot/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/RestartFix/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/ForceHPET/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/GeneratePStates/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/VBIOS/postinstall
M/branches/iFabio/Chameleon/package/Scripts/Advanced/EHCIacquire/postinstall
M/branches/iFabio/Chameleon/package/Scripts/BaseOptions/DropSSDT/postinstall

File differences

branches/iFabio/Chameleon/package/Scripts/Advanced/ForceHPET/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if ForceHPET has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/EHCIacquire/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if EHCIacquire has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/VBIOS/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if VBIOS has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/GUI/postinstall
55
66
77
8
8
99
1010
1111
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if GUI has been written or not
branches/iFabio/Chameleon/package/Scripts/Advanced/SMBIOSdefaults/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if SMBIOSdefault has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/UseMemDetect/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if UseMemDetect has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/Wait/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Wait has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/LegacyLogo/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if LegacyLogo has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/UseNvidiaROM/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if UseNvidiaROM has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/ForceWake/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if ForceWake has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/Wake/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Wake has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/UseAtiROM/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if UseAtiROM has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/BootBanner/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if BootBanner has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/QuietBoot/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if QuietBoot has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Advanced/UHCIreset/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if UHCIreset has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/GenerateCStates/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if GenerateCStates has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/DropSSDT/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if DropSSDT has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/EthernetBuiltIn/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if EthernetBuiltIn has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/InstantMenu/postinstall
66
77
88
9
9
1010
1111
1212
......
3737
3838
3939
40
40
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Instant Menu has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/GraphicsEnabler/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if GraphicsEnabler has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/RestartFix/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if RestartFix has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/arch/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if arch has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/BaseOptions/GeneratePStates/postinstall
55
66
77
8
8
99
1010
1111
......
2727
2828
2929
30
30
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if GeneratePStates has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Resolutions/1024x768x32/postinstall
55
66
77
8
8
99
1010
1111
......
3636
3737
3838
39
39
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()
branches/iFabio/Chameleon/package/Scripts/Resolutions/1920x1200x32/postinstall
55
66
77
8
8
99
1010
1111
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
branches/iFabio/Chameleon/package/Scripts/Resolutions/1600x900x32/postinstall
55
66
77
8
8
99
1010
1111
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
branches/iFabio/Chameleon/package/Scripts/Resolutions/1280x1024x32/postinstall
55
66
77
8
8
99
1010
1111
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
branches/iFabio/Chameleon/package/Scripts/Resolutions/1680x1050x32/postinstall
55
66
77
8
8
99
1010
1111
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
branches/iFabio/Chameleon/package/Scripts/Resolutions/1920x1080x32/postinstall
55
66
77
8
8
99
1010
1111
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
branches/iFabio/Chameleon/package/Scripts/Resolutions/1280x960x32/postinstall
55
66
77
8
8
99
1010
1111
......
3636
3737
3838
39
39
import os
vol = str(sys.argv[3])
boot = "/Extra/com.apple.Boot.plist"
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
infile = open(plist, "r")
# check if Graphics_Mode has been written or not
outfile = open(plist, "w")
outfile.write(body)
outfile.close()
outfile.close()

Archive Download the corresponding diff file

Revision: 317