2009-11-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
[grub2.git] / gencmdlist.sh
blob7f2549099f4f3d05fd9ad0ecef336e6f74efc0e7
1 #! /bin/sh
3 # Copyright (C) 2005 Free Software Foundation, Inc.
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.
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 # Read source code from stdin and detect command names.
16 module=$1
18 grep -v "^#" | sed -n \
19 -e "/grub_register_command *( *\"/{s/.*( *\"\([^\"]*\)\".*/\1: $module/;p;}" \
20 -e "/grub_register_extcmd *( *\"/{s/.*( *\"\([^\"]*\)\".*/*\1: $module/;p;}" \
21 -e "/grub_register_command_p1 *( *\"/{s/.*( *\"\([^\"]*\)\".*/*\1: $module/;p;}"