[08/15] hdparm: Fix build with glibc 2.36

Message ID 20220815171753.1858688-8-michael.tremer@ipfire.org
State Accepted
Commit fac5f144bb6fca3058ecfdf98b183e76c499c795
Headers
Series [01/15] sysvinit: Fix build against glibc 2.36 |

Commit Message

Michael Tremer Aug. 15, 2022, 5:17 p.m. UTC
  Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
 lfs/hdparm                                      |  1 +
 src/patches/hdparm-9.64-fix-glibc-headers.patch | 11 +++++++++++
 2 files changed, 12 insertions(+)
 create mode 100644 src/patches/hdparm-9.64-fix-glibc-headers.patch
  

Patch

diff --git a/lfs/hdparm b/lfs/hdparm
index 704317a6a..8d3f6d1cf 100644
--- a/lfs/hdparm
+++ b/lfs/hdparm
@@ -70,6 +70,7 @@  $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+	cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/hdparm-9.64-fix-glibc-headers.patch
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)
diff --git a/src/patches/hdparm-9.64-fix-glibc-headers.patch b/src/patches/hdparm-9.64-fix-glibc-headers.patch
new file mode 100644
index 000000000..7589c861e
--- /dev/null
+++ b/src/patches/hdparm-9.64-fix-glibc-headers.patch
@@ -0,0 +1,11 @@ 
+--- hdparm-9.64/hdparm.c
++++ hdparm-9.64/hdparm.c
+@@ -24,9 +24,6 @@
+ #include <sys/mount.h>
+ #include <sys/mman.h>
+ #include <sys/user.h>
+-#include <linux/types.h>
+-#include <linux/fs.h>
+-#include <linux/major.h>
+ #include <endian.h>
+ #include <asm/byteorder.h>