Index: branches/iFabio/Chameleon/package/Scripts/Advanced/GUI/postinstall =================================================================== --- branches/iFabio/Chameleon/package/Scripts/Advanced/GUI/postinstall (revision 320) +++ branches/iFabio/Chameleon/package/Scripts/Advanced/GUI/postinstall (revision 321) @@ -1,5 +1,5 @@ #!/usr/bin/python -# Script to add GUI for Chameleon boot loaders +# Script to add ShowInfo for Chameleon boot loaders import sys import os @@ -8,18 +8,18 @@ boot = "/Extra/org.chameleon.Boot.plist" plist = vol + boot infile = open(plist, "r") -# check if GUI has been written or not -GUICheck = False +# check if ShowInfo has been written or not +ShowInfoCheck = False body = "" for line in infile: - # if we finish the tags and haven't written GUI Yet - if "" in line and GUICheck == False: - line = " GUI\n" + # if we finish the tags and haven't written ShowInfo Yet + if "" in line and ShowInfoCheck == False: + line = " ShowInfo\n" line += " No\n" line += "\n" - GUICheck = True + ShowInfoCheck = True body += line Index: branches/iFabio/Chameleon/package/Scripts/BaseOptions/GenerateCStates/postinstall =================================================================== --- branches/iFabio/Chameleon/package/Scripts/BaseOptions/GenerateCStates/postinstall (revision 320) +++ branches/iFabio/Chameleon/package/Scripts/BaseOptions/GenerateCStates/postinstall (revision 321) @@ -1,5 +1,5 @@ #!/usr/bin/python -# Script to add GenerateCStates for Chameleon boot loaders +# Script to add CSTUsingSystemIO for Chameleon boot loaders import sys import os @@ -8,18 +8,18 @@ boot = "/Extra/org.chameleon.Boot.plist" plist = vol + boot infile = open(plist, "r") -# check if GenerateCStates has been written or not -GenerateCStatesCheck = False +# check if CSTUsingSystemIO has been written or not +CSTUsingSystemIOCheck = False body = "" for line in infile: - # if we finish the tags and haven't written GenerateCStates Yet - if "" in line and GenerateCStatesCheck == False: - line = " GenerateCStates\n" + # if we finish the tags and haven't written CSTUsingSystemIO Yet + if "" in line and CSTUsingSystemIOCheck == False: + line = " CSTUsingSystemIO\n" line += " Yes\n" line += "\n" - GenerateCStatesCheck = True + CSTUsingSystemIOCheck = True body += line Index: branches/iFabio/Chameleon/package/Resources/English.lproj/Localizable.strings =================================================================== Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream