Ensure all lines that should be omitted from public includes are marked
[AROS.git] / arch / all-pc / boot / grub2-aros / grub-core / gensymlist.sh
blob0ab56e9cb361a1b69eae485976e1f68f98b44d7b
1 #! /bin/sh
3 # Copyright (C) 2002,2006,2007,2008,2009,2010 Free Software Foundation, Inc.
5 # This gensymlist.sh.in is free software; the author
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
14 cat <<EOF
15 /* This file is automatically generated by gensymlist.sh. DO NOT EDIT! */
17 * GRUB -- GRand Unified Bootloader
18 * Copyright (C) 2002,2006,2007,2008,2009,2010 Free Software Foundation, Inc.
20 * GRUB is free software: you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation, either version 3 of the License, or
23 * (at your option) any later version.
25 * GRUB is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
30 * You should have received a copy of the GNU General Public License
31 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
34 EOF
36 for i in $*; do
37 echo "#include <$i>"
38 done
40 cat <<EOF
42 #define COMPILE_TIME_ASSERT(cond) switch (0) { case 1: case !(cond): ; }
44 void
45 grub_register_exported_symbols (void)
47 EOF
49 cat <<EOF
50 struct symtab { const char *name; void *addr; };
51 struct symtab *p;
52 static struct symtab tab[] =
54 EOF
56 (while read LINE; do echo $LINE; done) \
57 | grep -v '^#' \
58 | sed -n \
59 -e '/EXPORT_FUNC *([a-zA-Z0-9_]*)/{s/.*EXPORT_FUNC *(\([a-zA-Z0-9_]*\)).*/ {"\1", \1},/;p;}' \
60 -e '/EXPORT_VAR *([a-zA-Z0-9_]*)/{s/.*EXPORT_VAR *(\([a-zA-Z0-9_]*\)).*/ {"\1", \&\1},/;p;}' \
61 | sort -u
63 cat <<EOF
64 {0, 0}
67 COMPILE_TIME_ASSERT (sizeof (tab) > sizeof (tab[0]));
68 for (p = tab; p->name; p++)
69 grub_dl_register_symbol (p->name, p->addr, 0);
71 EOF