3aabc96053f64f5e339501c16541c4bb16572c2a
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / busybox / 0001-networking-libiproute-use-linux-if_packet.h-instead-.patch
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
5  <net/if_packet.h>
6
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
11 <netpacket/packet.h>
12
13 This commit fixes the build of iplink with the musl C library.
14
15 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
16 [Gustavo: update for busybox 1.22.0]
17
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
21 @@ -7,7 +7,7 @@
22   */
23  #include <net/if.h>
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>
28  
29  #include <linux/if_vlan.h>