Chameleon

Chameleon Commit Details

Date:2012-11-14 01:12:57 (11 years 5 months ago)
Author:ErmaC
Commit:2120
Parents: 2119
Message:Correct mistake into template Localizable.strings file Now the descriptions for all the module will be show correctly. Set default environment variables for UTF-8 and C Now the pkg background is shown again.
Changes:
M/trunk/package/buildpkg.sh
M/trunk/package/Resources/templates/Localizable.strings

File differences

trunk/package/Resources/templates/Localizable.strings
6262
6363
6464
65
66
67
68
65
66
67
68
6969
7070
7171
72
72
7373
7474
7575
"KernelPatcher_title" = "Kernel Patcher";
"KernelPatcher_description" = "The KernelPatcher module provides patches for the following:
Enables the use of the kernelcache with /Extra/Extensions and /Extra/Extensions.mkext
Removed the CPUID check
Removes an LAPIC panic
Removes a panic in commpage_stuff_routine
*Enables the use of the kernelcache with /Extra/Extensions and /Extra/Extensions.mkext
*Removed the CPUID check
*Removes an LAPIC panic
*Removes a panic in commpage_stuff_routine
Dependencies: none";
"KextPatcher_title" = "Kext Patcher";
"KernelPatcher_description" = "The KextPatcher module provides patches for the following:
"KextPatcher_description" = "The KextPatcher module provides patches for the following:
Dependencies: none";
// ============================================================================
trunk/package/buildpkg.sh
2323
2424
2525
26
27
28
29
30
2631
2732
33
34
35
36
2837
38
39
2940
30
31
32
33
3441
3542
3643
......
554561
555562
556563
557
564
558565
559566
560567
......
573580
574581
575582
576
583
577584
578585
579586
set -u # Abort with unset variables
#set -e # Abort with any error can be suppressed locally using EITHER cmd||true OR set -e;cmd;set +e
# ====== LANGUAGE SETUP ======
export LANG='en_US.UTF-8'
export LC_COLLATE='C'
export LC_CTYPE='C'
# ====== CONFIGURATION ======
CONFIG_MODULES=""
CONFIG_ACPICODEC_MODULE=""
CONFIG_KERNELPATCHER_MODULE=""
CONFIG_KEXTPATCHER_MODULE=""
CONFIG_KEYLAYOUT_MODULE=""
CONFIG_KLIBC_MODULE=""
CONFIG_RESOLUTION_MODULE=""
CONFIG_SATA_MODULE=""
CONFIG_UCLIBCXX_MODULE=""
CONFIG_SATA_MODULE=""
CONFIG_ACPICODEC_MODULE=""
CONFIG_RESOLUTION_MODULE=""
CONFIG_KEYLAYOUT_MODULE=""
source "${SRCROOT}/auto.conf"
# ====== COLORS ======
}
fi
# -
if [[ "${CONFIG_RESOLUTION_MODULE}" == 'm' && -f "${SYMROOT}/i386/modules/KernelPatcher.dylib" ]]; then
if [[ "${CONFIG_KERNELPATCHER_MODULE}" == 'y' && -f "${SYMROOT}/i386/modules/KernelPatcher.dylib" ]]; then
{
# Start build KernelPatcher package module
choiceId="KernelPatcher"
}
fi
# -
if [[ "${CONFIG_RESOLUTION_MODULE}" == 'm' && -f "${SYMROOT}/i386/modules/KextPatcher.dylib" ]]; then
if [[ "${CONFIG_KEXTPATCHER_MODULE}" == 'y' && -f "${SYMROOT}/i386/modules/KextPatcher.dylib" ]]; then
{
# Start build KextPatcher package module
choiceId="KextPatcher"

Archive Download the corresponding diff file

Revision: 2120