Lines Matching refs:defconfig
54 elif base and 'defconfig' in base:
132 # defconfig: $(obj)/conf
134 # $< --defconfig $(Kconfig)
137 # $(Q)$< --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig)
140 # If a defconfig is specified via the KBUILD_DEFCONFIG variable, we copy it
141 # from the source tree, into a common location and normalized "defconfig" name,
144 # If the fetcher has already placed a defconfig in WORKDIR (from the SRC_URI),
150 if [ -f "${WORKDIR}/defconfig" ]; then
151 # If the two defconfig's are different, warn that we overwrote the
153 cmp "${WORKDIR}/defconfig" "${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG}"
155 … bbdebug 1 "detected SRC_URI or unpatched defconfig in WORKDIR. ${KBUILD_DEFCONFIG} copied over it"
157 cp -f ${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG} ${WORKDIR}/defconfig
159 cp -f ${S}/arch/${ARCH}/configs/${KBUILD_DEFCONFIG} ${WORKDIR}/defconfig
161 in_tree_defconfig="${WORKDIR}/defconfig"
186 # there's a defconfig in the SRC_URI, did we also have one from the
188 …src_uri_defconfig=$(echo $sccs_from_src_uri | awk '(match($0, "defconfig") != 0) { print $0 }' RS=…
189 # drop and defconfig's from the src_uri variable, we captured it just above here if it existed
190 …sccs_from_src_uri=$(echo $sccs_from_src_uri | awk '(match($0, "defconfig") == 0) { print $0 }' RS=…
195 …bbwarn "[NOTE]: defconfig was supplied both via KBUILD_DEFCONFIG and SRC_URI. Dropping SRC_URI def…
198 # if we didn't have an in-tree one, make our defconfig the one
231 …Could not locate BSP definition for ${KMACHINE}/${LINUX_KERNEL_TYPE} and no defconfig was provided"
437 if [ -f ${WORKDIR}/defconfig ]; then