File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -58,17 +58,18 @@ if [[ "${CONFIG_USE_CUSTOM_PASSWD}" = "y" ]]; then
5858 buf=` grep CONFIG_CUSTOM_PASSWD .config | sed -e ' s/CONFIG_CUSTOM_PASSWD/password/g' `
5959 eval " ${buf} "
6060fi
61+ buf=` grep CONFIG_USE_CUSTOM_WORK .config`
62+ eval " ${buf} "
63+ if [[ " ${CONFIG_USE_CUSTOM_WORK} " = " true" ]]; then
64+ buf=` grep CONFIG_CUSTOM_WORKDIR .config | sed -e ' s/CONFIG_CUSTOM_WORKDIR/workdir/g' `
65+ eval " ${buf} "
66+ fi
6167buf=` grep CONFIG_CHANNEL_N_A_M_E_ .config | sed -e ' s/=y//g' | sed -e ' s/CONFIG_CHANNEL_N_A_M_E_/channel=/g' `
6268eval " ${buf,,} "
6369if [[ $USE_CUSTOM_LANG = " true" ]]; then
6470 buf=` grep CONFIG_CUSTOM_LANGUAGE .config | sed -e ' s/CONFIG_CUSTOM_LANGUAGE/language/g' `
6571 eval " ${buf} "
6672fi
67- eval " ${buf,,} "
68- if [[ " ${CONFIG_USE_CUSTOM_WORK} " = " true" ]]; then
69- buf=` grep CONFIG_CUSTOM_WORKDIR .config | sed -e ' s/CONFIG_CUSTOM_WORKDIR/workdir/g' `
70- eval " ${buf} "
71- fi
7273
7374echo build option :
7475 [[ -n " ${language} " ]] && echo " Language : ${language} "
You can’t perform that action at this time.
0 commit comments