summaryrefslogtreecommitdiff
path: root/build.config.user
blob: 023db6cd9171c2b22463ccca9724fa2d4c9061f9 (plain)
1
2
3
4
5
6
7
8
9
10
. ${ROOT_DIR}/build.config
POST_DEFCONFIG_CMDS="check_defconfig && update_nodebugfs_config"

function update_nodebugfs_config() {
  # Disable debug fs options
  ${KERNEL_DIR}/scripts/config --file ${OUT_DIR}/.config \
      -d DEBUG_FS
  (cd ${OUT_DIR} && \
    make O=${OUT_DIR} CLANG_TRIPLE=${CLANG_TRIPLE} CROSS_COMPILE=${CROSS_COMPILE} "${TOOL_ARGS[@]}" ${MAKE_ARGS} olddefconfig)
}