diff options
-rw-r--r-- | meta-networking/recipes-connectivity/dhcpcd/dhcpcd_8.1.1.bb (renamed from meta-networking/recipes-connectivity/dhcpcd/dhcpcd_8.0.2.bb) | 8 | ||||
-rw-r--r-- | meta-networking/recipes-connectivity/dhcpcd/files/0001-dhcpcd-Fix-build-error-with-musl.patch | 34 |
2 files changed, 39 insertions, 3 deletions
diff --git a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_8.0.2.bb b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_8.1.1.bb index 79d1dada04..a5aa584f5a 100644 --- a/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_8.0.2.bb +++ b/meta-networking/recipes-connectivity/dhcpcd/dhcpcd_8.1.1.bb | |||
@@ -10,9 +10,11 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=0531457992a97ecebc6975914a874a9d" | |||
10 | UPSTREAM_CHECK_URI = "https://roy.marples.name/downloads/dhcpcd/" | 10 | UPSTREAM_CHECK_URI = "https://roy.marples.name/downloads/dhcpcd/" |
11 | 11 | ||
12 | SRC_URI = "http://roy.marples.name/downloads/${BPN}/${BPN}-${PV}.tar.xz \ | 12 | SRC_URI = "http://roy.marples.name/downloads/${BPN}/${BPN}-${PV}.tar.xz \ |
13 | file://0001-remove-INCLUDEDIR-to-prevent-build-issues.patch" | 13 | file://0001-remove-INCLUDEDIR-to-prevent-build-issues.patch \ |
14 | SRC_URI[md5sum] = "c0375a1f725f1c191b43af60e4f7175b" | 14 | file://0001-dhcpcd-Fix-build-error-with-musl.patch" |
15 | SRC_URI[sha256sum] = "33a26ad561546cd2cfe1e6de6352a85df72b41c37def8c7eb00e90e57c627a5c" | 15 | |
16 | SRC_URI[md5sum] = "dc4f29a62afc53cdac311e925cfd1bc7" | ||
17 | SRC_URI[sha256sum] = "485d308fe10febd36b6f936e4260e4ab34a146e4f00a9f7a5509c4377ad5ea82" | ||
16 | 18 | ||
17 | inherit pkgconfig autotools-brokensep | 19 | inherit pkgconfig autotools-brokensep |
18 | 20 | ||
diff --git a/meta-networking/recipes-connectivity/dhcpcd/files/0001-dhcpcd-Fix-build-error-with-musl.patch b/meta-networking/recipes-connectivity/dhcpcd/files/0001-dhcpcd-Fix-build-error-with-musl.patch new file mode 100644 index 0000000000..b48b467b8c --- /dev/null +++ b/meta-networking/recipes-connectivity/dhcpcd/files/0001-dhcpcd-Fix-build-error-with-musl.patch | |||
@@ -0,0 +1,34 @@ | |||
1 | Subject: [PATCH] dhcpcd: Fix build error with musl. | ||
2 | |||
3 | Re-organize the header includes in if-linux.c to fix error as follows: | ||
4 | In file included from if-linux.c:49: | ||
5 | path/usr/include/netinet/if_ether.h:112:8: error: redefinition of 'struct ethhdr' | ||
6 | |||
7 | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> | ||
8 | --- | ||
9 | src/if-linux.c | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/src/if-linux.c b/src/if-linux.c | ||
13 | index fd47278..bfa878b 100644 | ||
14 | --- a/src/if-linux.c | ||
15 | +++ b/src/if-linux.c | ||
16 | @@ -37,6 +37,7 @@ | ||
17 | #include <linux/if_addr.h> | ||
18 | #include <linux/if_link.h> | ||
19 | #include <linux/if_packet.h> | ||
20 | +#include <netinet/if_ether.h> | ||
21 | #include <linux/if_tun.h> | ||
22 | #include <linux/if_vlan.h> | ||
23 | #include <linux/filter.h> | ||
24 | @@ -46,7 +47,6 @@ | ||
25 | |||
26 | #include <arpa/inet.h> | ||
27 | #include <net/if.h> | ||
28 | -#include <netinet/if_ether.h> | ||
29 | #include <netinet/in_systm.h> | ||
30 | #include <netinet/in.h> | ||
31 | #include <net/route.h> | ||
32 | -- | ||
33 | 2.7.4 | ||
34 | |||