FILESPATHPKG =. "${P}:${BPN}:busybox-${PV}:"
S = "${WORKDIR}/busybox-${PV}"
-
-do_configure_append() {
- sed -i -e '/CONFIG_STATIC/d' .config
- echo "CONFIG_STATIC=y" >>.config
-}
-
SECTION = "base"
PRIORITY = "required"
-INC_PR = "r38"
+INC_PR = "r39"
SRC_URI = "\
file://busybox-cron \
d)
}
-do_configure () {
+do_prepare_config () {
sed -e 's#@DATADIR@#${datadir}#g' \
< ${WORKDIR}/defconfig > ${S}/.config
+ sed -i -e '/CONFIG_STATIC/d' .config
+ echo "# CONFIG_STATIC is not set" >> .config
for i in 'CROSS' 'DISTRO FEATURES'; do echo "### $i"; done >> \
${S}/.config
sed -i -e '${configmangle}' ${S}/.config
{if(net==2&&$0 !~ /^#/&&$1){print("# "$1" is not set")}else{print}}' \
${S}/.config.oe-tmp > ${S}/.config
fi
+}
+
+do_prepare_config_append_pn-busybox-static() {
+ sed -i -e '/CONFIG_STATIC/d' .config
+ echo "CONFIG_STATIC=y" >>.config
+}
+
+do_configure () {
+ do_prepare_config
cml1_do_configure
}