]> git.proxmox.com Git - grub2.git/blame - genfslist.sh
Merge upstream
[grub2.git] / genfslist.sh
CommitLineData
39c9d41d 1#! /bin/sh
2#
f36cc108 3# Copyright (C) 2005,2008 Free Software Foundation, Inc.
39c9d41d 4#
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.
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# Read source code from stdin and detect fs names.
15
16module=$1
17
29c18915 18# Ignore kernel.mod.
19if test $module = kernel; then
20 exit
21fi
22
39c9d41d 23# For now, this emits only a module name, if the module registers a filesystem.
24if grep -v "^#" | grep '^ *grub_fs_register' >/dev/null 2>&1; then
25 echo $module
26fi