diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/busybox/busybox/defconfig | 2 | ||||
-rw-r--r-- | meta/recipes-core/busybox/busybox/recognize_connmand.patch | 15 | ||||
-rw-r--r-- | meta/recipes-core/busybox/busybox_1.22.1.bb | 1 |
3 files changed, 17 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox/defconfig b/meta/recipes-core/busybox/busybox/defconfig index 0107231e56..35f1026d65 100644 --- a/meta/recipes-core/busybox/busybox/defconfig +++ b/meta/recipes-core/busybox/busybox/defconfig | |||
@@ -781,7 +781,7 @@ CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN=y | |||
781 | CONFIG_FEATURE_IFUPDOWN_IPV4=y | 781 | CONFIG_FEATURE_IFUPDOWN_IPV4=y |
782 | CONFIG_FEATURE_IFUPDOWN_IPV6=y | 782 | CONFIG_FEATURE_IFUPDOWN_IPV6=y |
783 | CONFIG_FEATURE_IFUPDOWN_MAPPING=y | 783 | CONFIG_FEATURE_IFUPDOWN_MAPPING=y |
784 | # CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set | 784 | CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP=y |
785 | # CONFIG_INETD is not set | 785 | # CONFIG_INETD is not set |
786 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set | 786 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set |
787 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set | 787 | # CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set |
diff --git a/meta/recipes-core/busybox/busybox/recognize_connmand.patch b/meta/recipes-core/busybox/busybox/recognize_connmand.patch new file mode 100644 index 0000000000..495bb05297 --- /dev/null +++ b/meta/recipes-core/busybox/busybox/recognize_connmand.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | Index: busybox-1.22.1/networking/ifupdown.c | ||
2 | =================================================================== | ||
3 | --- busybox-1.22.1.orig/networking/ifupdown.c | ||
4 | +++ busybox-1.22.1/networking/ifupdown.c | ||
5 | @@ -521,6 +521,10 @@ struct dhcp_client_t { | ||
6 | }; | ||
7 | |||
8 | static const struct dhcp_client_t ext_dhcp_clients[] = { | ||
9 | + { "connmand", | ||
10 | + "true", | ||
11 | + "true", | ||
12 | + }, | ||
13 | { "dhcpcd", | ||
14 | "dhcpcd[[ -h %hostname%]][[ -i %vendor%]][[ -I %client%]][[ -l %leasetime%]] %iface%", | ||
15 | "dhcpcd -k %iface%", | ||
diff --git a/meta/recipes-core/busybox/busybox_1.22.1.bb b/meta/recipes-core/busybox/busybox_1.22.1.bb index 46641e19fa..edee4a9963 100644 --- a/meta/recipes-core/busybox/busybox_1.22.1.bb +++ b/meta/recipes-core/busybox/busybox_1.22.1.bb | |||
@@ -30,6 +30,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \ | |||
30 | file://inetd \ | 30 | file://inetd \ |
31 | file://login-utilities.cfg \ | 31 | file://login-utilities.cfg \ |
32 | file://0001-build-system-Specify-nostldlib-when-linking-to-.o-fi.patch \ | 32 | file://0001-build-system-Specify-nostldlib-when-linking-to-.o-fi.patch \ |
33 | file://recognize_connmand.patch \ | ||
33 | " | 34 | " |
34 | 35 | ||
35 | SRC_URI[tarball.md5sum] = "337d1a15ab1cb1d4ed423168b1eb7d7e" | 36 | SRC_URI[tarball.md5sum] = "337d1a15ab1cb1d4ed423168b1eb7d7e" |