2009-11-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
[grub2.git] / genmodsrc.sh
blob2d420550a8726ce6d6b726904606b791598f02ef
1 #! /bin/sh
3 # Copyright (C) 2002,2007 Free Software Foundation, Inc.
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.
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 set -e
16 mod_name="$1"
17 deps="$2"
19 cat <<EOF
20 /* This file is automatically generated by genmodsrc.sh. DO NOT EDIT! */
22 * GRUB -- GRand Unified Bootloader
23 * Copyright (C) 2002,2007 Free Software Foundation, Inc.
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.
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.
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/>.
39 #include <grub/dl.h>
41 EOF
43 echo "GRUB_MOD_NAME(${mod_name});"
45 for mod in `grep "^${mod_name}:" ${deps} | sed 's/^[^:]*://'`; do
46 echo "GRUB_MOD_DEP(${mod});"
47 done