aboutsummaryrefslogtreecommitdiff
path: root/utils/pcmciautils
diff options
context:
space:
mode:
authorIlya Lipnitskiy <ilya.lipnitskiy@gmail.com>2021-02-20 16:02:15 -0800
committerIlya Lipnitskiy <ilya.lipnitskiy@gmail.com>2021-02-20 16:02:15 -0800
commit5d8d4fbbcb5c5de9370711c19bb3510210989a98 (patch)
treed0754921833f413b7eb93fb6bb1b1c8a22fb0498 /utils/pcmciautils
parentd651082447b4392399a40ea1ae11d0bce4bfe83a (diff)
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Diffstat (limited to 'utils/pcmciautils')
-rw-r--r--utils/pcmciautils/patches/001-switch_unsigned.patch2
-rw-r--r--utils/pcmciautils/patches/002-disable_yywrap.patch14
2 files changed, 5 insertions, 11 deletions
diff --git a/utils/pcmciautils/patches/001-switch_unsigned.patch b/utils/pcmciautils/patches/001-switch_unsigned.patch
index 8a1559cd9..32d97f428 100644
--- a/utils/pcmciautils/patches/001-switch_unsigned.patch
+++ b/utils/pcmciautils/patches/001-switch_unsigned.patch
@@ -1,6 +1,6 @@
--- a/src/yacc_config.y
+++ b/src/yacc_config.y
-@@ -40,7 +40,7 @@
+@@ -40,7 +40,7 @@ int yylex(void);
%union {
char *str;
diff --git a/utils/pcmciautils/patches/002-disable_yywrap.patch b/utils/pcmciautils/patches/002-disable_yywrap.patch
index e30abb0d1..41895d2a9 100644
--- a/utils/pcmciautils/patches/002-disable_yywrap.patch
+++ b/utils/pcmciautils/patches/002-disable_yywrap.patch
@@ -1,6 +1,6 @@
---- pcmciautils-018/src/lex_config.l
-+++ pcmciautils-018/src/lex_config.l
-@@ -1,8 +1,8 @@
+--- a/src/lex_config.l
++++ b/src/lex_config.l
+@@ -1,6 +1,6 @@
/* Special state for handling include files */
%x src
-%option noinput nounput
@@ -8,11 +8,7 @@
%{
/*
- * Startup tool for non statically mapped PCMCIA sockets
- *
-@@ -75,14 +75,10 @@ module /* skip */ ;
-
- . return yytext[0];
+@@ -77,10 +77,6 @@ module /* skip */ ;
%%
@@ -23,5 +19,3 @@
/*======================================================================
Stuff to parse basic data types
-
- ======================================================================*/