Quote:
Originally Posted by diveman
hey man glad your here. i get an arkswitch error and a tmail error when building with 21893 but not with 23541. and i cant remember where in the kitchen to go to reenable the slider bar on home screen. thank you!!
Edit: i remembered where the cprs were to edit.
|
arkswitch needs to be skipped for non 6.5.x builds. When I added 21895 I realized this, tonight's kitchen it automatically skips.. or just add a few lines to the script:
Code:
if %buildver% gtr 23017 (
echo > EXT\%DEVICE%\Baseline\01_system_RZ\TaskManager_2_1_19203822_17\_skip
del EXT\%DEVICE%\Baseline\01_system\e-Natives_WM6_5_x_Position_Fix\_skip
del EXT\%DEVICE%\Baseline\06_tweaks\RZ_ShellRES_6.5.x\_skip
echo > EXT\%DEVICE%\Baseline\06_tweaks\RZ_ShellRES_6.5\_skip
del EXT\%DEVICE%\Baseline\10_dialer\RZ_phcanrc_for655\_skip
del EXT\%device%\Baseline\02_Manila_Dependencies_2.1\e-Natives_WM6_5_x_Position_Fix\_skip
echo > EXT\%device%\Baseline\02_Manila_Dependencies_2.1\e-Natives_WM6_5_x_Position_Fix\_only_manila
echo > EXT\%device%\Baseline\02_Manila_Dependencies_2.1\e-Natives_WM6_5_x_Position_Fix\_only_both
del EXT\%device%\Baseline\10_dialer\RZ_phcanrc\_skip
del EXT\%device%\Baseline\04_rz_apps\ArkSwitch_v1_0_4\_skip
)
if %buildver% leq 23017 (
del EXT\%DEVICE%\Baseline\01_system_RZ\TaskManager_2_1_19203822_17\_skip
echo > EXT\%DEVICE%\Baseline\04_RZ_apps\RZ_X2_TaskManager\_skip
echo > EXT\%DEVICE%\Baseline\01_system\e-Natives_WM6_5_x_Position_Fix\_skip
echo > EXT\%DEVICE%\Baseline\06_tweaks\RZ_ShellRES_6.5.x\_skip
del EXT\%DEVICE%\Baseline\06_tweaks\RZ_ShellRES_6.5\_skip
echo > EXT\%DEVICE%\Baseline\10_dialer\RZ_phcanrc_for655\_skip
del EXT\%device%\Baseline\02_Manila_Dependencies_2.1\e-Natives_WM6_5_x_Position_Fix\_only_manila
del EXT\%device%\Baseline\02_Manila_Dependencies_2.1\e-Natives_WM6_5_x_Position_Fix\_only_both
echo > EXT\%device%\Baseline\02_Manila_Dependencies_2.1\e-Natives_WM6_5_x_Position_Fix\_skip
echo > EXT\%device%\Baseline\10_dialer\RZ_phcanrc\_skip
echo > EXT\%device%\Baseline\04_rz_apps\ArkSwitch_v1_0_4\_skip
)
check the bottom line in each section