]> git.proxmox.com Git - grub2.git/blame - genmodsrc.sh
Explicitly check that terminal is in visual UTF-8 before mirroring code
[grub2.git] / genmodsrc.sh
CommitLineData
6a161fa9 1#! /bin/sh
2#
5a79f472 3# Copyright (C) 2002,2007 Free Software Foundation, Inc.
6a161fa9 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
14set -e
15
16mod_name="$1"
17deps="$2"
18
19cat <<EOF
20/* This file is automatically generated by genmodsrc.sh. DO NOT EDIT! */
21/*
4b13b216 22 * GRUB -- GRand Unified Bootloader
5a79f472 23 * Copyright (C) 2002,2007 Free Software Foundation, Inc.
6a161fa9 24 *
5a79f472 25 * GRUB is free software: you can redistribute it and/or modify
6a161fa9 26 * it under the terms of the GNU General Public License as published by
5a79f472 27 * the Free Software Foundation, either version 3 of the License, or
6a161fa9 28 * (at your option) any later version.
29 *
5a79f472 30 * GRUB is distributed in the hope that it will be useful,
6a161fa9 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
5a79f472 36 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
6a161fa9 37 */
38
4b13b216 39#include <grub/dl.h>
6a161fa9 40
41EOF
42
4b13b216 43echo "GRUB_MOD_NAME(${mod_name});"
6a161fa9 44
45for mod in `grep "^${mod_name}:" ${deps} | sed 's/^[^:]*://'`; do
4b13b216 46 echo "GRUB_MOD_DEP(${mod});"
6a161fa9 47done