windows: Add _stack_chk_guard/_stack_chk_fail symbols for Windows 64-bit target
[grub.git] / geninit.sh
blobf0810120fb9cc535ffc23d8faf639deae972da97
1 #! /bin/sh
3 # Copyright (C) 2002,2005,2007 Free Software Foundation, Inc.
5 # This gensymlist.sh 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 geninit.sh. DO NOT EDIT! */
17 * GRUB -- GRand Unified Bootloader
18 * Copyright (C) 2002,2005,2007 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 #include <grub/emu/misc.h>
36 EOF
38 for mod in "$@"; do
39 echo "extern void grub_${mod}_init (void);"
40 echo "extern void grub_${mod}_fini (void);"
41 done
43 cat <<EOF
44 void
45 grub_init_all (void)
47 EOF
49 for mod in "$@"; do
50 echo "grub_${mod}_init ();"
51 done
53 cat <<EOF
55 EOF
57 cat <<EOF
58 void
59 grub_fini_all (void)
61 EOF
63 for mod in "$@"; do
64 echo "grub_${mod}_fini ();"
65 done
67 cat <<EOF
69 EOF