Chameleon

Chameleon Commit Details

Date:2011-09-20 17:57:04 (12 years 6 months ago)
Author:blackosx
Commit:1547
Parents: 1546
Message:Added UseKernelCache boot option to svn
Changes:
A/branches/blackosx/package/Scripts/Advanced/UseKernelCache
A/branches/blackosx/package/Scripts/Advanced/UseKernelCache/postinstall

File differences

branches/blackosx/package/Scripts/Advanced/UseKernelCache/postinstall
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/python
# Script to add UseKernelCache for Chameleon boot loaders
import sys
import os
import shutil
vol = str(sys.argv[3])
# Check for .ChameleonEFI file at root of target volume
# to indicate user wants to install to EFI system partition.
espfile = "/.ChameleonEFI"
espvol = vol + espfile
if os.path.exists(espvol):
if not os.path.exists('/Volumes/EFI/Extra'):
os.makedirs('/Volumes/EFI/Extra')
plist = "/Volumes/EFI/Extra/org.chameleon.Boot.plist"
else:
boot = "/Extra/org.chameleon.Boot.plist"
plist = vol + boot
if not os.path.exists(plist):
shutil.copy('/Library/Preferences/SystemConfiguration/com.apple.Boot.plist', plist)
infile = open(plist, "r")
# check if UseKernelCache has been written or not
UseKernelCacheCheck = False
body = ""
for line in infile:
# if we finish the tags and haven't written UseKernelCache Yet
if "</dict>" in line and UseKernelCacheCheck == False:
line = " <key>UseKernelCache</key>\n"
line += " <string>Yes</string>\n"
line += "</dict>\n"
UseKernelCacheCheck = True
body += line
infile.close()
outfile = open(plist, "w")
outfile.write(body)
outfile.close()

Archive Download the corresponding diff file

Revision: 1547