mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
Add riscv64 support Rework klibc support patches Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrea Adami <andrea.adami@gmail.com>
28 lines
742 B
Diff
28 lines
742 B
Diff
From 6843cefb1d1d0017a714a2752bb008efd844f3e4 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Thu, 13 Jul 2017 16:20:08 -0700
|
|
Subject: [PATCH] Adjust the order of headers to fix build for musl
|
|
|
|
Fixes
|
|
kexec/ifdown.c:33:16: error: storage size of 'ifc' isn't known
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
kexec/ifdown.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/kexec/ifdown.c
|
|
+++ b/kexec/ifdown.c
|
|
@@ -16,8 +16,8 @@ char *v_ifdown = "@(#)ifdown.c 1.11 02
|
|
#include <sys/socket.h>
|
|
#include <sys/time.h>
|
|
|
|
-#include <net/if.h>
|
|
#include <netinet/in.h>
|
|
+#include <net/if.h>
|
|
|
|
/*
|
|
* First, we find all shaper devices and down them. Then we
|