2002-12-27 08:53:07 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
2006-04-26 21:58:36 +00:00
|
|
|
# Copyright (C) 2002,2006 Free Software Foundation, Inc.
|
2002-12-27 08:53:07 +00:00
|
|
|
#
|
2006-04-26 21:58:36 +00:00
|
|
|
# This gensymlist.sh.in is free software; the author
|
2002-12-27 08:53:07 +00:00
|
|
|
# gives unlimited permission to copy and/or distribute it,
|
|
|
|
# with or without modifications, as long as this notice is preserved.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
|
|
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
|
|
# PARTICULAR PURPOSE.
|
|
|
|
|
2006-04-26 21:58:36 +00:00
|
|
|
### The configure script will replace these variables.
|
|
|
|
|
|
|
|
srcdir=@srcdir@
|
|
|
|
CC=@CC@
|
|
|
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
cat <<EOF
|
|
|
|
/* This file is automatically generated by gensymlist.sh. DO NOT EDIT! */
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB -- GRand Unified Bootloader
|
2006-04-26 21:58:36 +00:00
|
|
|
* Copyright (C) 2002,2006 Free Software Foundation, Inc.
|
2002-12-27 08:53:07 +00:00
|
|
|
*
|
2004-04-04 13:46:03 +00:00
|
|
|
* GRUB is free software; you can redistribute it and/or modify
|
2002-12-27 08:53:07 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2004-04-04 13:46:03 +00:00
|
|
|
* along with GRUB; if not, write to the Free Software
|
2002-12-27 08:53:07 +00:00
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
for i in $*; do
|
|
|
|
echo "#include <$i>"
|
|
|
|
done
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_register_exported_symbols (void)
|
2002-12-27 08:53:07 +00:00
|
|
|
{
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
struct symtab { const char *name; void *addr; };
|
|
|
|
struct symtab *p;
|
|
|
|
static struct symtab tab[] =
|
|
|
|
{
|
|
|
|
EOF
|
|
|
|
|
2006-04-26 21:58:36 +00:00
|
|
|
$CC -DGRUB_SYMBOL_GENERATOR=1 -E -I. -Iinclude -I$srcdir/include $* \
|
|
|
|
| grep -v '^#' \
|
|
|
|
| sed -n \
|
|
|
|
-e '/EXPORT_FUNC *([a-zA-Z0-9_]*)/{s/.*EXPORT_FUNC *(\([a-zA-Z0-9_]*\)).*/ {"\1", \1},/;p;}' \
|
|
|
|
-e '/EXPORT_VAR *([a-zA-Z0-9_]*)/{s/.*EXPORT_VAR *(\([a-zA-Z0-9_]*\)).*/ {"\1", \&\1},/;p;}' \
|
|
|
|
| sort -u
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
for (p = tab; p->name; p++)
|
2004-04-04 13:46:03 +00:00
|
|
|
grub_dl_register_symbol (p->name, p->addr, 0);
|
2002-12-27 08:53:07 +00:00
|
|
|
}
|
|
|
|
EOF
|