c2e32e6558
- new upstream version; - add 0001-erofs-utils-dump-fix-de-nid-issues.patch [1]; - add 0002-fsck-main.c-add-missing-include.patch [2]; - add 0003-erofs-utils-lib-fix-blobdev-without-Eforce-chunk-ind.patch [3]; - add 0004-erofs-utils-fix-Makefile-for-fsck.erofs-manpage.patch [4]. [1] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=17eb5c417bd56be4b2f7627c2d6879fbad6a86d6 [2] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=1ca453ee89894b1669ac78d7f216bda172783e8d [3] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=eb255afa101b52096bd3e5e48f990576190f03bd [4] https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/commit/?id=534eda7f8678e5b8fc8ca0f5cf0d9d7a932e0d48 Signed-off-by: Gao Xiang <hsiangkao@aol.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
32 lines
884 B
Diff
32 lines
884 B
Diff
From 1ca453ee89894b1669ac78d7f216bda172783e8d Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex@linutronix.de>
|
|
Date: Mon, 6 Dec 2021 20:14:03 +0100
|
|
Subject: [PATCH] fsck/main.c: add missing include
|
|
|
|
Otherwise musl C library builds fail with missing S_IFMT/S_IFDIR
|
|
definitions.
|
|
|
|
Link: https://lore.kernel.org/r/20211206191403.1435229-1-alex@linutronix.de
|
|
Reviewed-by: Gao Xiang <hsiangkao@linux.alibaba.com>
|
|
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
|
|
Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
|
|
---
|
|
fsck/main.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/fsck/main.c b/fsck/main.c
|
|
index aefa881f740a..ad48e35f587b 100644
|
|
--- a/fsck/main.c
|
|
+++ b/fsck/main.c
|
|
@@ -6,6 +6,7 @@
|
|
#include <stdlib.h>
|
|
#include <getopt.h>
|
|
#include <time.h>
|
|
+#include <sys/stat.h>
|
|
#include "erofs/print.h"
|
|
#include "erofs/io.h"
|
|
#include "erofs/decompress.h"
|
|
--
|
|
2.30.2
|
|
|