mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
34 lines
748 B
Diff
34 lines
748 B
Diff
--- modutils-2.4.26.orig/genksyms/lex.l
|
|
+++ modutils-2.4.26/genksyms/lex.l
|
|
@@ -130,6 +130,7 @@
|
|
|
|
static int suppress_type_lookup, dont_want_brace_phrase;
|
|
static struct string_list *next_node;
|
|
+ static int next_token = 0;
|
|
|
|
int token, count = 0;
|
|
struct string_list *cur_node;
|
|
@@ -144,7 +145,12 @@
|
|
}
|
|
|
|
repeat:
|
|
- token = yylex1();
|
|
+ if (next_token != 0) {
|
|
+ token = next_token;
|
|
+ next_token = 0;
|
|
+ }
|
|
+ else
|
|
+ token = yylex1();
|
|
|
|
if (token == 0)
|
|
return 0;
|
|
@@ -425,7 +431,7 @@
|
|
{
|
|
/* Put back the token we just read so's we can find it again
|
|
after registering the expression. */
|
|
- unput(token);
|
|
+ next_token = token;
|
|
|
|
lexstate = ST_NORMAL;
|
|
token = EXPRESSION_PHRASE;
|