diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/busybox/busybox.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index 49165d7f51..956cccac61 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc | |||
@@ -128,7 +128,9 @@ do_prepare_config () { | |||
128 | ${S}/.config.oe-tmp > ${S}/.config | 128 | ${S}/.config.oe-tmp > ${S}/.config |
129 | fi | 129 | fi |
130 | sed -i 's/CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n"/CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -b"/' ${S}/.config | 130 | sed -i 's/CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n"/CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -b"/' ${S}/.config |
131 | sed -i 's|${DEBUG_PREFIX_MAP}||g' ${S}/.config | 131 | if [ -n "${DEBUG_PREFIX_MAP}" ]; then |
132 | sed -i 's|${DEBUG_PREFIX_MAP}||g' ${S}/.config | ||
133 | fi | ||
132 | } | 134 | } |
133 | 135 | ||
134 | # returns all the elements from the src uri that are .cfg files | 136 | # returns all the elements from the src uri that are .cfg files |
@@ -142,6 +144,7 @@ def find_cfgs(d): | |||
142 | return sources_list | 144 | return sources_list |
143 | 145 | ||
144 | do_configure () { | 146 | do_configure () { |
147 | set -x | ||
145 | do_prepare_config | 148 | do_prepare_config |
146 | merge_config.sh -m .config ${@" ".join(find_cfgs(d))} | 149 | merge_config.sh -m .config ${@" ".join(find_cfgs(d))} |
147 | cml1_do_configure | 150 | cml1_do_configure |