This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Merge pull request
#2276
from notnyt/master
flashrom: include io.h to fix compile error
lilik-openwrt-22.03
Álvaro Fernández Rojas
9 years ago
parent
fab13041b3
d01dfdebcf
commit
bd60de02b7
2 changed files
with
13 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
utils/flashrom/Makefile
+12
-0
utils/flashrom/patches/0003-fix-io-h-include.patch
+ 1
- 1
utils/flashrom/Makefile
View File
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME
:=
flashrom
PKG_VERSION
:=
0.9.8
PKG_RELEASE
:=
5
PKG_RELEASE
:=
6
PKG_SOURCE
:=
$(
PKG_NAME
)
-
$(
PKG_VERSION
)
.tar.bz2
PKG_SOURCE_URL
:=
http://download.flashrom.org/releases
+ 12
- 0
utils/flashrom/patches/0003-fix-io-h-include.patch
View File
@ -0,0 +1,12 @@
diff -uprN a/linux_spi.c b/linux_spi.c
--- a/flash.h 2015-02-08 16:57:52.000000000 -0500
+++ b/flash.h 2016-01-08 20:09:51.599387507 -0500
@@ -30,6 +30,7 @@
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
+#include <sys/io.h>
#include <stdbool.h>
#if IS_WINDOWS
#include <windows.h>
Write
Preview
Loading…
Cancel
Save