1 From d4fec31889ad660a58dab633c511221feb66e817 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Sat, 5 Oct 2013 15:55:06 +0200
4 Subject: [PATCH] networking/libiproute: use <linux/if_packet.h> instead of
7 The musl C library doesn't provide the <net/if_packet.h> since the
8 corresponding kernel headers <linux/if_packet.h> already provides the
9 necessary definitions. Replacing <net/if_packet.h> by
10 <linux/if_packet.h> also removes the need to include
13 This commit fixes the build of iplink with the musl C library.
15 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 [Gustavo: update for busybox 1.22.0]
18 diff -Nura busybox-1.22.0.orig/networking/libiproute/iplink.c busybox-1.22.0/networking/libiproute/iplink.c
19 --- busybox-1.22.0.orig/networking/libiproute/iplink.c 2014-01-01 09:42:40.301137882 -0300
20 +++ busybox-1.22.0/networking/libiproute/iplink.c 2014-01-01 09:43:01.282827700 -0300
24 /*#include <net/if_packet.h> - not needed? */
25 -#include <netpacket/packet.h>
26 +#include <linux/if_packet.h>
27 #include <netinet/if_ether.h>
29 #include <linux/if_vlan.h>