]> git.proxmox.com Git - grub2.git/blob - genmodsrc.sh
2006-04-25 Yoshinori K. Okuji <okuji@enbug.org>
[grub2.git] / genmodsrc.sh
1 #! /bin/sh
2 #
3 # Copyright (C) 2002 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 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 2 of the License, or
28 * (at your option) any later version.
29 *
30 * This program 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, write to the Free Software
37 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
38 */
39
40 #include <grub/dl.h>
41
42 EOF
43
44 echo "GRUB_MOD_NAME(${mod_name});"
45
46 for mod in `grep "^${mod_name}:" ${deps} | sed 's/^[^:]*://'`; do
47 echo "GRUB_MOD_DEP(${mod});"
48 done