local  _FW_LOADER=$(get_kernel_config CONFIG_FW_LOADER)  &&
local   _MAC80211=$(get_kernel_config CONFIG_MAC80211)   &&

if [[ $_FW_LOADER != y &&
      $_FW_LOADER != m ]]
then
  message "${PROBLEM_COLOR}You don't have CONFIG_FW_LOADER"        \
          "enabled in your kernel configuration, cannot build"     \
          "${SPELL_COLOR}$SPELL${MESSAGE_COLOR}.${DEFAULT_COLOR}"  &&
  return 1
fi  &&

if [[ $_MAC80211 != y &&
      $_MAC80211 != m ]]
then
  message "${PROBLEM_COLOR}You don't have CONFIG_MAC80211"         \
          "enabled in your kernel configuration, cannot build"     \
          "${SPELL_COLOR}$SPELL${MESSAGE_COLOR}.${DEFAULT_COLOR}"  &&
  return 1
fi

default_pre_build
