http://www.gnu.org/software/grub/manual/grub.html#index-searchにあるsearch
コマンドの公式GRUB2ドキュメントを探しています
Command: search [--file|--label|--fs-uuid] [--set [var]] [--no-floppy] name
Search devices by file (-f, --file), filesystem label (-l, --label),
or filesystem UUID (-u, --fs-uuid).
If the --set option is used, the first device found is set as the
value of environment variable var. The default variable is ‘root’.
The --no-floppy option prevents searching floppy devices, which can be slow.
The ‘search.file’, ‘search.fs_label’, and ‘search.fs_uuid’ commands are aliases
for ‘search --file’, ‘search --label’, and ‘search --fs-uuid’ respectively.
セクション5.3に沿って多くの例があります
menuentry "FreeBSD" {
insmod zfs
search --set=root --label freepool --hint hd0,msdos7
...
}
表示された--hint
オプションは例として以外に文書化されていません。それは正確に何をしますか?引数の正確な形式は何ですか?