local argstype=${2}
case "${argstype}" in
- kernel|runtask)
+ kernel|kernelruntask)
export_kernel_args
MAKE=${KERNEL_MAKE}
;;
case "${argstype}" in
kernel) ARGS="`compile_kernel_args`" ;;
utils) ARGS="`compile_utils_args`" ;;
- *) ARGS="" ;; # includes runtask
+ *) ARGS="" ;; # includes kernelruntask
esac
shift 2
# the eval usage is needed in the next set of code
# as ARGS can contain spaces and quotes, eg:
# ARGS='CC="ccache gcc"'
- if [ "${argstype}" == 'runtask' ]
+ if [ "${argstype}" == 'kernelruntask' ]
then
# Silent operation, forced -j1
print_info 2 "COMMAND: ${MAKE} ${MAKEOPTS} -j1 ${ARGS} ${target} $*" 1 0 1
if isTrue ${MENUCONFIG}
then
print_info 1 'kernel: >> Invoking menuconfig...'
- compile_generic menuconfig runtask
+ compile_generic menuconfig kernelruntask
[ "$?" ] || gen_die 'Error: menuconfig failed!'
elif isTrue ${CMD_GCONFIG}
then