diff options
author | Baruch Siach <baruch@tkos.co.il> | 2015-10-27 14:57:16 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-27 22:09:39 +0100 |
commit | 9972408a94fa8447786de5d15a11f2649b43a882 (patch) | |
tree | 02d6f135714af27a8bf769076ed69cff24db22a0 /package/ipmiutil/0005-add-missing-param.h-header-include.patch | |
parent | 1c8e10e0ca7833cee05231a5d629feab0be1245a (diff) | |
download | buildroot-9972408a94fa8447786de5d15a11f2649b43a882.tar.gz buildroot-9972408a94fa8447786de5d15a11f2649b43a882.zip |
ipmiutil: bump to version 2.9.7
Remove upstream or unneeded patches. Renumber and refresh the doc disable
patch. Add a different version of the lanplus disable fix (sent upstream) that
integrates with upstream change in this area.
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ipmiutil/0005-add-missing-param.h-header-include.patch')
-rw-r--r-- | package/ipmiutil/0005-add-missing-param.h-header-include.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/ipmiutil/0005-add-missing-param.h-header-include.patch b/package/ipmiutil/0005-add-missing-param.h-header-include.patch deleted file mode 100644 index 30bc47bc39..0000000000 --- a/package/ipmiutil/0005-add-missing-param.h-header-include.patch +++ /dev/null @@ -1,24 +0,0 @@ -Add missing linux/param.h header include - -Fixes the following build failure under musl: - -mem_if.c: In function ‘MapPhysicalMemory’: -mem_if.c:337:36: error: ‘EXEC_PAGESIZE’ undeclared (first use in this function) - ulDiff = (ULONG)(tdStartAddress % EXEC_PAGESIZE); - ^ - -Signed-off-by: Baruch Siach <baruch@tkos.co.il> - -diff -Nuar ipmiutil-2.9.5-orig/util/mem_if.c ipmiutil-2.9.5/util/mem_if.c ---- ipmiutil-2.9.5-orig/util/mem_if.c 2014-11-04 19:46:11.000000000 +0200 -+++ ipmiutil-2.9.5/util/mem_if.c 2015-09-29 08:08:31.800459775 +0300 -@@ -65,6 +65,9 @@ - #include <sys/param.h> - #include <sys/mman.h> - #include <sys/ioctl.h> -+#ifdef __linux__ -+#include <linux/param.h> -+#endif - #endif - #if defined(SOLARIS) || defined(BSD) - #define EXEC_PAGESIZE 4096 |