mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Add dependency to libnl that became mandatory with commit: https://git.linux-nfs.org/?p=steved/nfs-utils.git;a=commitdiff;h=d2fa3421f857e04de7f79cdf3114a0fe73983d25 Add 3 local patches pending upstream to fix build failures. Release announce: https://lore.kernel.org/linux-nfs/955a922e-c12d-435b-a698-caf73312f01d@redhat.com/ Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Reviewed-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
29 lines
856 B
Diff
29 lines
856 B
Diff
From 2d99ff0aa8a3b4d20558bce742edaaed9d24b3cb Mon Sep 17 00:00:00 2001
|
|
From: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
|
Date: Tue, 7 Apr 2026 17:23:13 +0200
|
|
Subject: [PATCH] fh_key_file: fix missing string.h inclusion
|
|
|
|
Add #include <string.h> to fix build failure.
|
|
|
|
Upstream: https://lore.kernel.org/linux-nfs/20260408173535.3992116-1-giulio.benetti@benettiengineering.com/T/#t
|
|
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
|
|
---
|
|
support/nfs/fh_key_file.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/support/nfs/fh_key_file.c b/support/nfs/fh_key_file.c
|
|
index 5f5eafc1..81ea1500 100644
|
|
--- a/support/nfs/fh_key_file.c
|
|
+++ b/support/nfs/fh_key_file.c
|
|
@@ -26,6 +26,7 @@
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
+#include <string.h>
|
|
#include <uuid/uuid.h>
|
|
|
|
#include "nfslib.h"
|
|
--
|
|
2.47.3
|
|
|