]> git.proxmox.com Git - grub2.git/blob - genmodsrc.sh
2009-11-24 Felix Zielcke <fzielcke@z-51.de>
[grub2.git] / genmodsrc.sh
1 #! /bin/sh
2 #
3 # Copyright (C) 2002,2007 Free Software Foundation, Inc.
4 #
5 # This genmodsrc.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.
8 #
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.
13
14 set -e
15
16 mod_name="$1"
17 deps="$2"
18
19 cat <<EOF
20 /* This file is automatically generated by genmodsrc.sh. DO NOT EDIT! */
21 /*
22 * GRUB -- GRand Unified Bootloader
23 * Copyright (C) 2002,2007 Free Software Foundation, Inc.
24 *
25 * GRUB is free software: you can redistribute it and/or modify
26 * it under the terms of the GNU General Public License as published by
27 * the Free Software Foundation, either version 3 of the License, or
28 * (at your option) any later version.
29 *
30 * GRUB is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
34 *
35 * You should have received a copy of the GNU General Public License
36 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
37 */
38
39 #include <grub/dl.h>
40
41 EOF
42
43 echo "GRUB_MOD_NAME(${mod_name});"
44
45 for mod in `grep "^${mod_name}:" ${deps} | sed 's/^[^:]*://'`; do
46 echo "GRUB_MOD_DEP(${mod});"
47 done