OSDN Git Service

GNU grub 2.06: Reserve to translate.
authormatsuand <30614168+matsuand@users.noreply.github.com>
Sun, 6 Feb 2022 12:59:00 +0000 (21:59 +0900)
committermatsuand <30614168+matsuand@users.noreply.github.com>
Sun, 6 Feb 2022 12:59:00 +0000 (21:59 +0900)
30 files changed:
manual/GNU_grub/original/getfiles.txt [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-editenv.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-file.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-fstest.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-glue-efi.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-kbdcomp.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-macho2img.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-menulst2cfg.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mkfont.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mkimage.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mklayout.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mknetdir.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mkpasswd-pbkdf2.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mkrelpath.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mkrescue.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mkstandalone.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-mount.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-render-label.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-script-check.1 [new file with mode: 0644]
manual/GNU_grub/original/man1/grub-syslinux2cfg.1 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-bios-setup.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-install.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-macbless.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-mkconfig.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-ofpathname.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-probe.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-reboot.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-set-default.8 [new file with mode: 0644]
manual/GNU_grub/original/man8/grub-sparc64-setup.8 [new file with mode: 0644]
manual/GNU_grub/translation_list [new file with mode: 0644]

diff --git a/manual/GNU_grub/original/getfiles.txt b/manual/GNU_grub/original/getfiles.txt
new file mode 100644 (file)
index 0000000..91c9189
--- /dev/null
@@ -0,0 +1,79 @@
+#------------------------------
+# ソース tarball 入手と伸長
+#------------------------------
+$ cd ~/src
+$ wget -N https://ftp.gnu.org/gnu/grub/grub-2.06.tar.xz
+$ tar xf grub-2.06.tar.xz
+$ ls
+grub-2.06
+
+#------------------------------
+# man ページ生成
+#  依存パッケージ: help2man,unifont,fuse3
+#------------------------------
+
+$ cd ~/src/grub-2.06
+$ patch -Np1 -i /path/to/grub-2.06-fuse3.patch
+$ autoreconf
+$ ./configure --prefix=/usr   \
+            --sysconfdir=/etc \
+            --disable-efiemu       \
+            --enable-grub-mkfont   \
+            --enable-grub-mount    \
+            --with-platform=efi
+
+       # help2man 処理において ja.po 反映するには
+       # 以下を実行して Makefile を書き換える:
+       # (本パッケージでは ja.po を用いる意味薄し)
+       $ sed -i.orig -e "s/^HELP2MAN.*/& -Lja_JP.utf8/" Makefile
+
+$ make
+
+# grub-macho2img.1 は mac/darwin 上においてビルド可能である
+# 模様(?)。本書作成者は x86_64 であるためビルド不能。
+# そこで強引に Makefile を書き換えてビルドしてしまう。
+$ sed -i -e "s/^#\(am__append_10\)/\1/" \
+         -e "s/^#\(am__append_11\)/\1/" \
+         -e "s/^#\(am__append_12\)/\1/" \
+         -e "s/^#\(am__EXEEXT_1\)/\1/" \
+         -e "s/^#\(am_grub_macho2img_OBJECTS\)/\1/" \
+         -e "s/^#\(grub_macho2img_SOURCES\)/\1/" \
+         -e "s/^#\(grub_macho2img_CFLAGS\)/\1/" \
+         -e "s/^#\(grub_macho2img_LDFLAGS\)/\1/" \
+         -e "s/^#\(grub_macho2img_CPPFLAGS\)/\1/" \
+         -e "s/^#\(grub_macho2img_CCASFLAGS\)/\1/" \
+         -e "s/^#\(grub-macho2img\.1\)/\1/" \
+         -e "s/^#\(\tchmod a+x grub-macho2img\)/\1/" \
+         -e "s/^#\(\tPATH=\$(builddir)\)/\1/" \
+    Makefile
+
+$ make
+$ make DESTDIR=. install-man
+
+#------------------------------
+# 当プロジェクトへの man ページのコピー
+#------------------------------
+
+$ cd $(JMTOP)/manual/GNU_grub/original
+$ cat > getfiles.sh <<"EOF"
+#!/bin/sh
+
+SRCDIR=~/src/grub-2.06
+abs_SRCDIR=`(cd $SRCDIR && pwd | sed -e 's/-/\\\\\\\\-/g')`
+
+rm -fr man{1,8}
+mkdir  man{1,8}
+
+# man ファイルにビルドディレクトリが含まれるため
+# sed 変換しつつ、当プロジェクトにコピー
+for n in 1 8; do
+  for f in `ls $SRCDIR/usr/share/man/man$n`; do
+    sed -e "s|$abs_SRCDIR||" $SRCDIR/usr/share/man/man$n/$f > man$n/$f
+  done
+done
+
+# grub-mknetdir.1 に typo があるため修正
+sed -i -e "s|\x0B||" man1/grub-mknetdir.1
+EOF
+
+$ sh getfiles.sh
diff --git a/manual/GNU_grub/original/man1/grub-editenv.1 b/manual/GNU_grub/original/man1/grub-editenv.1
new file mode 100644 (file)
index 0000000..9557178
--- /dev/null
@@ -0,0 +1,59 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-EDITENV "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-editenv \- edit GRUB environment block
+.SH SYNOPSIS
+.B grub-editenv
+[\fI\,OPTION\/\fR...] \fI\,FILENAME COMMAND\/\fR
+.SH DESCRIPTION
+Tool to edit environment block.
+.IP
+Commands:
+.TP
+create
+Create a blank environment block file.
+.TP
+list
+List the current variables.
+.TP
+set [NAME=VALUE ...]
+Set variables.
+.TP
+unset [NAME ...]
+Delete variables.
+.IP
+Options:
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+If FILENAME is `\-', the default value \fI\,/boot/grub/grubenv\/\fP is used.
+.PP
+There is no `delete' command; if you want to delete the whole environment
+block, use `rm /boot/grub/grubenv'.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-reboot (8),
+.BR grub-set-default (8)
+.PP
+The full documentation for
+.B grub-editenv
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-editenv
+programs are properly installed at your site, the command
+.IP
+.B info grub-editenv
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-file.1 b/manual/GNU_grub/original/man1/grub-file.1
new file mode 100644 (file)
index 0000000..5f6a485
--- /dev/null
@@ -0,0 +1,118 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-FILE "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-file \- check file type
+.SH SYNOPSIS
+.B file
+\fI\,OPTIONS FILE\/\fR
+.SH DESCRIPTION
+Check if FILE is of specified type.
+.TP
+\fB\-\-is\-i386\-xen\-pae\-domu\fR
+Check if FILE can be booted as i386 PAE Xen unprivileged guest kernel
+.TP
+\fB\-\-is\-x86_64\-xen\-domu\fR
+Check if FILE can be booted as x86_64 Xen unprivileged guest kernel
+.TP
+\fB\-\-is\-x86\-xen\-dom0\fR
+Check if FILE can be used as Xen x86 privileged guest kernel
+.TP
+\fB\-\-is\-x86\-multiboot\fR
+Check if FILE can be used as x86 multiboot kernel
+.HP
+\fB\-\-is\-x86\-multiboot2\fR Check if FILE can be used as x86 multiboot2 kernel
+.TP
+\fB\-\-is\-arm\-linux\fR
+Check if FILE is ARM Linux
+.TP
+\fB\-\-is\-arm64\-linux\fR
+Check if FILE is ARM64 Linux
+.TP
+\fB\-\-is\-ia64\-linux\fR
+Check if FILE is IA64 Linux
+.TP
+\fB\-\-is\-mips\-linux\fR
+Check if FILE is MIPS Linux
+.TP
+\fB\-\-is\-mipsel\-linux\fR
+Check if FILE is MIPSEL Linux
+.TP
+\fB\-\-is\-sparc64\-linux\fR
+Check if FILE is SPARC64 Linux
+.TP
+\fB\-\-is\-powerpc\-linux\fR
+Check if FILE is POWERPC Linux
+.TP
+\fB\-\-is\-x86\-linux\fR
+Check if FILE is x86 Linux
+.TP
+\fB\-\-is\-x86\-linux32\fR
+Check if FILE is x86 Linux supporting 32\-bit protocol
+.TP
+\fB\-\-is\-x86\-kfreebsd\fR
+Check if FILE is x86 kFreeBSD
+.TP
+\fB\-\-is\-i386\-kfreebsd\fR
+Check if FILE is i386 kFreeBSD
+.TP
+\fB\-\-is\-x86_64\-kfreebsd\fR
+Check if FILE is x86_64 kFreeBSD
+.TP
+\fB\-\-is\-x86\-knetbsd\fR
+Check if FILE is x86 kNetBSD
+.TP
+\fB\-\-is\-i386\-knetbsd\fR
+Check if FILE is i386 kNetBSD
+.HP
+\fB\-\-is\-x86_64\-knetbsd\fR Check if FILE is x86_64 kNetBSD
+.TP
+\fB\-\-is\-i386\-efi\fR
+Check if FILE is i386 EFI file
+.TP
+\fB\-\-is\-x86_64\-efi\fR
+Check if FILE is x86_64 EFI file
+.TP
+\fB\-\-is\-ia64\-efi\fR
+Check if FILE is IA64 EFI file
+.TP
+\fB\-\-is\-arm64\-efi\fR
+Check if FILE is ARM64 EFI file
+.TP
+\fB\-\-is\-arm\-efi\fR
+Check if FILE is ARM EFI file
+.TP
+\fB\-\-is\-riscv32\-efi\fR
+Check if FILE is RISC\-V 32bit EFI file
+.TP
+\fB\-\-is\-riscv64\-efi\fR
+Check if FILE is RISC\-V 64bit EFI file
+.TP
+\fB\-\-is\-hibernated\-hiberfil\fR
+Check if FILE is hiberfil.sys in hibernated state
+.TP
+\fB\-\-is\-x86_64\-xnu\fR
+Check if FILE is x86_64 XNU (Mac OS X kernel)
+.TP
+\fB\-\-is\-i386\-xnu\fR
+Check if FILE is i386 XNU (Mac OS X kernel)
+.TP
+\fB\-\-is\-xnu\-hibr\fR
+Check if FILE is XNU (Mac OS X kernel) hibernated image
+.TP
+\fB\-\-is\-x86\-bios\-bootsector\fR
+Check if FILE is BIOS bootsector
+.PP
+\fB\-h\fR, \fB\-\-help\fR              Display this help and exit.
+\fB\-u\fR, \fB\-\-usage\fR             Display the usage of this command and exit.
+.SH "SEE ALSO"
+The full documentation for
+.B grub-file
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-file
+programs are properly installed at your site, the command
+.IP
+.B info grub-file
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-fstest.1 b/manual/GNU_grub/original/man1/grub-fstest.1
new file mode 100644 (file)
index 0000000..4e4e716
--- /dev/null
@@ -0,0 +1,88 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-FSTEST "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-fstest \- debug tool for GRUB filesystem drivers
+.SH SYNOPSIS
+.B grub-fstest
+[\fI\,OPTION\/\fR...] \fI\,IMAGE_PATH COMMANDS\/\fR
+.SH DESCRIPTION
+Debug tool for filesystem driver.
+.IP
+Commands:
+.TP
+blocklist FILE
+Display blocklist of FILE.
+.TP
+cat FILE
+Copy FILE to standard output.
+.TP
+cmp FILE LOCAL
+Compare FILE with local file LOCAL.
+.TP
+cp FILE LOCAL
+Copy FILE to local file LOCAL.
+.TP
+crc FILE
+Get crc32 checksum of FILE.
+.TP
+hex FILE
+Show contents of FILE in hex.
+.TP
+ls PATH
+List files in PATH.
+.TP
+xnu_uuid DEVICE
+Compute XNU UUID of the device.
+.TP
+\fB\-c\fR, \fB\-\-diskcount\fR=\fI\,NUM\/\fR
+Specify the number of input files.
+.TP
+\fB\-C\fR, \fB\-\-crypto\fR
+Mount crypto devices.
+.TP
+\fB\-d\fR, \fB\-\-debug\fR=\fI\,STRING\/\fR
+Set debug environment variable.
+.TP
+\fB\-K\fR, \fB\-\-zfs\-key\fR=\fI\,FILE\/\fR|prompt
+Load zfs crypto key.
+.TP
+\fB\-n\fR, \fB\-\-length\fR=\fI\,NUM\/\fR
+Handle N bytes in output file.
+.TP
+\fB\-r\fR, \fB\-\-root\fR=\fI\,DEVICE_NAME\/\fR
+Set root device.
+.TP
+\fB\-s\fR, \fB\-\-skip\fR=\fI\,NUM\/\fR
+Skip N bytes from output file.
+.TP
+\fB\-u\fR, \fB\-\-uncompress\fR
+Uncompress data.
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "SEE ALSO"
+.BR grub-probe (8)
+.PP
+The full documentation for
+.B grub-fstest
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-fstest
+programs are properly installed at your site, the command
+.IP
+.B info grub-fstest
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-glue-efi.1 b/manual/GNU_grub/original/man1/grub-glue-efi.1
new file mode 100644 (file)
index 0000000..efe3d00
--- /dev/null
@@ -0,0 +1,49 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-GLUE-EFI "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-glue-efi \- generate a fat binary for EFI
+.SH SYNOPSIS
+.B grub-glue-efi
+[\fI\,OPTION\/\fR...] [\fI\,OPTIONS\/\fR]
+.SH DESCRIPTION
+grub-glue-efi processes ia32 and amd64 EFI images and glues them according to Apple format.
+.PP
+Glue 32\-bit and 64\-bit binary into Apple universal one.
+.TP
+\fB\-3\fR, \fB\-\-input32\fR=\fI\,FILE\/\fR
+set input filename for 32\-bit part.
+.TP
+\fB\-6\fR, \fB\-\-input64\fR=\fI\,FILE\/\fR
+set input filename for 64\-bit part.
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+set output filename. Default is STDOUT
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+The full documentation for
+.B grub-glue-efi
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-glue-efi
+programs are properly installed at your site, the command
+.IP
+.B info grub-glue-efi
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-kbdcomp.1 b/manual/GNU_grub/original/man1/grub-kbdcomp.1
new file mode 100644 (file)
index 0000000..8523351
--- /dev/null
@@ -0,0 +1,42 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-KBDCOMP "1" "October 2021" "grub-kbdcomp ()" "User Commands"
+.SH NAME
+grub-kbdcomp \- generate a GRUB keyboard layout file
+.SH SYNOPSIS
+.B grub-kbdcomp
+\fI\,-o OUTPUT CKBMAP_ARGUMENTS\/\fR...
+.SH DESCRIPTION
+grub-kbdcomp processes a X keyboard layout description in
+.BR keymaps (5)
+format into a format that can be used by GRUB's
+.B keymap
+command.
+.PP
+Make GRUB keyboard layout file.
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+print this message and exit
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print the version information and exit
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+save output in FILE [required]
+.PP
+grub\-kbdcomp generates a keyboard layout for GRUB using ckbcomp
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mklayout (8)
+.PP
+The full documentation for
+.B grub-kbdcomp
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-kbdcomp
+programs are properly installed at your site, the command
+.IP
+.B info grub-kbdcomp
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-macho2img.1 b/manual/GNU_grub/original/man1/grub-macho2img.1
new file mode 100644 (file)
index 0000000..114f224
--- /dev/null
@@ -0,0 +1,20 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MACHO2IMG "1" "October 2021" "Couldn't open --version" "User Commands"
+.SH NAME
+grub-macho2img \- convert Mach-O to raw image
+.SH DESCRIPTION
+Couldn't open \fB\-\-help\fR
+.SH "SEE ALSO"
+.BR grub-mkimage (1)
+.PP
+The full documentation for
+.B grub-macho2img
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-macho2img
+programs are properly installed at your site, the command
+.IP
+.B info grub-macho2img
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-menulst2cfg.1 b/manual/GNU_grub/original/man1/grub-menulst2cfg.1
new file mode 100644 (file)
index 0000000..e608eae
--- /dev/null
@@ -0,0 +1,23 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MENULST2CFG "1" "October 2021" "Usage: grub-menulst2cfg [INFILE [OUTFILE]]" "User Commands"
+.SH NAME
+grub-menulst2cfg \- transform legacy menu.lst into grub.cfg
+.SH SYNOPSIS
+.B grub-menulst2cfg
+[\fI\,INFILE \/\fR[\fI\,OUTFILE\/\fR]]
+.SH DESCRIPTION
+
+.SH "SEE ALSO"
+.BR grub-mkconfig (8)
+.PP
+The full documentation for
+.B grub-menulst2cfg
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-menulst2cfg
+programs are properly installed at your site, the command
+.IP
+.B info grub-menulst2cfg
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mkfont.1 b/manual/GNU_grub/original/man1/grub-mkfont.1
new file mode 100644 (file)
index 0000000..49d7ec6
--- /dev/null
@@ -0,0 +1,73 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKFONT "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mkfont \- make GRUB font files
+.SH SYNOPSIS
+.B grub-mkfont
+[\fI\,OPTION\/\fR...] [\fI\,OPTIONS\/\fR] \fI\,FONT_FILES\/\fR
+.SH DESCRIPTION
+Convert common font file formats into PF2
+.TP
+\fB\-a\fR, \fB\-\-force\-autohint\fR
+force autohint
+.TP
+\fB\-b\fR, \fB\-\-bold\fR
+convert to bold font
+.TP
+\fB\-c\fR, \fB\-\-asce\fR=\fI\,NUM\/\fR
+set font ascent
+.TP
+\fB\-d\fR, \fB\-\-desc\fR=\fI\,NUM\/\fR
+set font descent
+.TP
+\fB\-i\fR, \fB\-\-index\fR=\fI\,NUM\/\fR
+select face index
+.TP
+\fB\-n\fR, \fB\-\-name\fR=\fI\,NAME\/\fR
+set font family name
+.TP
+\fB\-\-no\-bitmap\fR
+ignore bitmap strikes when loading
+.TP
+\fB\-\-no\-hinting\fR
+disable hinting
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+save output in FILE [required]
+.TP
+\fB\-r\fR, \fB\-\-range\fR=\fI\,FROM\-TO[\/\fR,FROM\-TO]
+set font range
+.TP
+\fB\-s\fR, \fB\-\-size\fR=\fI\,SIZE\/\fR
+set font size
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkconfig (8)
+.PP
+The full documentation for
+.B grub-mkfont
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkfont
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkfont
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mkimage.1 b/manual/GNU_grub/original/man1/grub-mkimage.1
new file mode 100644 (file)
index 0000000..90da54c
--- /dev/null
@@ -0,0 +1,97 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKIMAGE "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mkimage \- make a bootable image of GRUB
+.SH SYNOPSIS
+.B grub-mkimage
+[\fI\,OPTION\/\fR...] [\fI\,OPTION\/\fR]... [\fI\,MODULES\/\fR]
+.SH DESCRIPTION
+Make a bootable image of GRUB.
+.TP
+\fB\-c\fR, \fB\-\-config\fR=\fI\,FILE\/\fR
+embed FILE as an early config
+.TP
+\fB\-C\fR, \fB\-\-compression=\fR(xz|none|auto)
+choose the compression to use for core image
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use images and modules under DIR
+[default=/usr/lib/grub/<platform>]
+.TP
+\fB\-\-disable\-shim\-lock\fR
+disable shim_lock verifier
+.TP
+\fB\-D\fR, \fB\-\-dtb\fR=\fI\,FILE\/\fR
+embed FILE as a device tree (DTB)
+.TP
+\fB\-k\fR, \fB\-\-pubkey\fR=\fI\,FILE\/\fR
+embed FILE as public key for signature checking
+.TP
+\fB\-m\fR,                              \fB\-\-memdisk\fR=\fI\,FILE\/\fR
+embed FILE as a memdisk image
+.PP
+Implies `\-p (memdisk)/boot/grub' and overrides
+.TP
+any prefix supplied previously, but the prefix
+itself can be overridden by later options
+.TP
+\fB\-n\fR, \fB\-\-note\fR
+add NOTE segment for CHRP IEEE1275
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+output a generated image to FILE [default=stdout]
+.TP
+\fB\-O\fR, \fB\-\-format\fR=\fI\,FORMAT\/\fR
+generate an image in FORMAT
+available formats: i386\-coreboot, i386\-multiboot,
+i386\-pc, i386\-xen_pvh, i386\-pc\-pxe,
+i386\-pc\-eltorito, i386\-efi, i386\-ieee1275,
+i386\-qemu, x86_64\-efi, i386\-xen, x86_64\-xen,
+mipsel\-yeeloong\-flash, mipsel\-fuloong2f\-flash,
+mipsel\-loongson\-elf, powerpc\-ieee1275,
+sparc64\-ieee1275\-raw, sparc64\-ieee1275\-cdcore,
+sparc64\-ieee1275\-aout, ia64\-efi, mips\-arc,
+mipsel\-arc, mipsel\-qemu_mips\-elf,
+mips\-qemu_mips\-flash, mipsel\-qemu_mips\-flash,
+mips\-qemu_mips\-elf, arm\-uboot,
+arm\-coreboot\-vexpress, arm\-coreboot\-veyron,
+arm\-efi, arm64\-efi, riscv32\-efi, riscv64\-efi
+.TP
+\fB\-p\fR, \fB\-\-prefix\fR=\fI\,DIR\/\fR
+set prefix directory
+.TP
+\fB\-s\fR, \fB\-\-sbat\fR=\fI\,FILE\/\fR
+SBAT metadata
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-install (8),
+.BR grub-mkrescue (1),
+.BR grub-mknetdir (8)
+.PP
+The full documentation for
+.B grub-mkimage
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkimage
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkimage
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mklayout.1 b/manual/GNU_grub/original/man1/grub-mklayout.1
new file mode 100644 (file)
index 0000000..c06bb3a
--- /dev/null
@@ -0,0 +1,52 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKLAYOUT "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mklayout \- generate a GRUB keyboard layout file
+.SH SYNOPSIS
+.B grub-mklayout
+[\fI\,OPTION\/\fR...] [\fI\,OPTIONS\/\fR]
+.SH DESCRIPTION
+grub-mklayout processes a keyboard layout description in
+.BR keymaps (5)
+format into a format that can be used by GRUB's
+.B keymap
+command.
+.PP
+Generate GRUB keyboard layout from Linux console one.
+.TP
+\fB\-i\fR, \fB\-\-input\fR=\fI\,FILE\/\fR
+set input filename. Default is STDIN
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+set output filename. Default is STDOUT
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkconfig (8)
+.PP
+The full documentation for
+.B grub-mklayout
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mklayout
+programs are properly installed at your site, the command
+.IP
+.B info grub-mklayout
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mknetdir.1 b/manual/GNU_grub/original/man1/grub-mknetdir.1
new file mode 100644 (file)
index 0000000..6ee01b0
--- /dev/null
@@ -0,0 +1,92 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKNETDIR "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mknetdir \- prepare a GRUB netboot directory.
+.SH SYNOPSIS
+.B grub-mknetdir
+[\fI\,OPTION\/\fR...]
+.SH DESCRIPTION
+Prepares
+GRUB network boot images at net_directory/subdir assuming net_directory being
+TFTP root.
+.TP
+\fB\-\-compress\fR=\fI\,no\/\fR|xz|gz|lzo
+compress GRUB files [optional]
+.TP
+\fB\-\-disable\-shim\-lock\fR
+disable shim_lock verifier
+.TP
+\fB\-\-dtb\fR=\fI\,FILE\/\fR
+embed a specific DTB
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use images and modules under DIR
+[default=/usr/lib/grub/<platform>]
+.TP
+\fB\-\-fonts\fR=\fI\,FONTS\/\fR
+install FONTS [default=unicode]
+.TP
+\fB\-\-install\-modules\fR=\fI\,MODULES\/\fR
+install only MODULES and their dependencies
+[default=all]
+.TP
+\fB\-k\fR, \fB\-\-pubkey\fR=\fI\,FILE\/\fR
+embed FILE as public key for signature checking
+.TP
+\fB\-\-locale\-directory\fR=\fI\,DIR\/\fR use translations under DIR
+[default=/usr/share/locale]
+.TP
+\fB\-\-locales\fR=\fI\,LOCALES\/\fR
+install only LOCALES [default=all]
+.TP
+\fB\-\-modules\fR=\fI\,MODULES\/\fR
+pre\-load specified modules MODULES
+.TP
+\fB\-\-sbat\fR=\fI\,FILE\/\fR
+SBAT metadata
+.TP
+\fB\-\-themes\fR=\fI\,THEMES\/\fR
+install THEMES [default=starfield]
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\fB\-\-core\-compress\fR=\fI\,xz\/\fR|none|auto
+choose the compression to use for core image
+.TP
+\fB\-\-net\-directory\fR=\fI\,DIR\/\fR
+root directory of TFTP server
+.TP
+\fB\-\-subdir\fR=\fI\,DIR\/\fR
+relative subdirectory on network server
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.PP
+Prepares GRUB network boot images at net_directory/subdir assuming
+net_directory being TFTP root.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkimage (1)
+.PP
+The full documentation for
+.B grub-mknetdir
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mknetdir
+programs are properly installed at your site, the command
+.IP
+.B info grub-mknetdir
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mkpasswd-pbkdf2.1 b/manual/GNU_grub/original/man1/grub-mkpasswd-pbkdf2.1
new file mode 100644 (file)
index 0000000..6cfea8a
--- /dev/null
@@ -0,0 +1,46 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKPASSWD-PBKDF2 "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mkpasswd-pbkdf2 \- generate hashed password for GRUB
+.SH SYNOPSIS
+.B grub-mkpasswd-pbkdf2
+[\fI\,OPTION\/\fR...] [\fI\,OPTIONS\/\fR]
+.SH DESCRIPTION
+Generate PBKDF2 password hash.
+.TP
+\fB\-c\fR, \fB\-\-iteration\-count\fR=\fI\,NUM\/\fR
+Number of PBKDF2 iterations
+.TP
+\fB\-l\fR, \fB\-\-buflen\fR=\fI\,NUM\/\fR
+Length of generated hash
+.TP
+\fB\-s\fR, \fB\-\-salt\fR=\fI\,NUM\/\fR
+Length of salt
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkconfig (8)
+.PP
+The full documentation for
+.B grub-mkpasswd-pbkdf2
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkpasswd-pbkdf2
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkpasswd-pbkdf2
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mkrelpath.1 b/manual/GNU_grub/original/man1/grub-mkrelpath.1
new file mode 100644 (file)
index 0000000..49f0842
--- /dev/null
@@ -0,0 +1,34 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKRELPATH "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mkrelpath \- make a system path relative to its root
+.SH SYNOPSIS
+.B grub-mkrelpath
+[\fI\,OPTION\/\fR...] \fI\,PATH\/\fR
+.SH DESCRIPTION
+Transform a system filename into GRUB one.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-probe (8)
+.PP
+The full documentation for
+.B grub-mkrelpath
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkrelpath
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkrelpath
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mkrescue.1 b/manual/GNU_grub/original/man1/grub-mkrescue.1
new file mode 100644 (file)
index 0000000..a0aa73f
--- /dev/null
@@ -0,0 +1,123 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKRESCUE "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mkrescue \- make a GRUB rescue image
+.SH SYNOPSIS
+.B grub-mkrescue
+[\fI\,OPTION\/\fR...] [\fI\,OPTION\/\fR] \fI\,SOURCE\/\fR...
+.SH DESCRIPTION
+Make GRUB CD\-ROM, disk, pendrive and floppy bootable image.
+.TP
+\fB\-\-compress\fR=\fI\,no\/\fR|xz|gz|lzo
+compress GRUB files [optional]
+.TP
+\fB\-\-dtb\fR=\fI\,FILE\/\fR
+embed a specific DTB
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use images and modules under DIR
+[default=/usr/lib/grub/<platform>]
+.TP
+\fB\-\-disable\-shim\-lock\fR
+disable shim_lock verifier
+.TP
+\fB\-\-fonts\fR=\fI\,FONTS\/\fR
+install FONTS [default=unicode]
+.TP
+\fB\-\-install\-modules\fR=\fI\,MODULES\/\fR
+install only MODULES and their dependencies
+[default=all]
+.TP
+\fB\-k\fR, \fB\-\-pubkey\fR=\fI\,FILE\/\fR
+embed FILE as public key for signature checking
+.TP
+\fB\-\-locale\-directory\fR=\fI\,DIR\/\fR use translations under DIR
+[default=/usr/share/locale]
+.TP
+\fB\-\-locales\fR=\fI\,LOCALES\/\fR
+install only LOCALES [default=all]
+.TP
+\fB\-\-modules\fR=\fI\,MODULES\/\fR
+pre\-load specified modules MODULES
+.TP
+\fB\-\-sbat\fR=\fI\,FILE\/\fR
+SBAT metadata
+.TP
+\fB\-\-themes\fR=\fI\,THEMES\/\fR
+install THEMES [default=starfield]
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\fB\-\-arcs\-boot\fR
+enable ARCS (big\-endian mips machines, mostly
+SGI) boot. Disables HFS+, APM, sparc64 and boot
+as disk image for i386\-pc
+.TP
+\fB\-\-core\-compress\fR=\fI\,xz\/\fR|none|auto
+choose the compression to use for core image
+.TP
+\fB\-\-label\-bgcolor\fR=\fI\,COLOR\/\fR
+use COLOR for label background
+.TP
+\fB\-\-label\-color\fR=\fI\,COLOR\/\fR
+use COLOR for label
+.TP
+\fB\-\-label\-font\fR=\fI\,FILE\/\fR
+use FILE as font for label
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+save output in FILE [required]
+.TP
+\fB\-\-product\-name\fR=\fI\,STRING\/\fR
+use STRING as product name
+.TP
+\fB\-\-product\-version\fR=\fI\,STRING\/\fR
+use STRING as product version
+.TP
+\fB\-\-rom\-directory\fR=\fI\,DIR\/\fR
+save ROM images in DIR [optional]
+.TP
+\fB\-\-sparc\-boot\fR
+enable sparc boot. Disables HFS+, APM, ARCS and
+boot as disk image for i386\-pc
+.TP
+\fB\-\-xorriso\fR=\fI\,FILE\/\fR
+use FILE as xorriso [optional]
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.PP
+Generates a bootable CD/USB/floppy image.  Arguments other than options to
+this program are passed to xorriso, and indicate source files, source
+directories, or any of the mkisofs options listed by the output of `xorriso
+\fB\-as\fR mkisofs \fB\-help\fR'.
+.PP
+Option \fB\-\-\fR switches to native xorriso command mode.
+.PP
+Mail xorriso support requests to <bug\-xorriso@gnu.org>.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkimage (1)
+.PP
+The full documentation for
+.B grub-mkrescue
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkrescue
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkrescue
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mkstandalone.1 b/manual/GNU_grub/original/man1/grub-mkstandalone.1
new file mode 100644 (file)
index 0000000..288e37b
--- /dev/null
@@ -0,0 +1,102 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKSTANDALONE "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mkstandalone \- make a memdisk-based GRUB image
+.SH SYNOPSIS
+.B grub-mkstandalone
+[\fI\,OPTION\/\fR...] [\fI\,OPTION\/\fR] \fI\,SOURCE\/\fR...
+.SH DESCRIPTION
+Generate a standalone image (containing all modules) in the selected format
+.TP
+\fB\-\-compress\fR=\fI\,no\/\fR|xz|gz|lzo
+compress GRUB files [optional]
+.TP
+\fB\-\-disable\-shim\-lock\fR
+disable shim_lock verifier
+.TP
+\fB\-\-dtb\fR=\fI\,FILE\/\fR
+embed a specific DTB
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use images and modules under DIR
+[default=/usr/lib/grub/<platform>]
+.TP
+\fB\-\-fonts\fR=\fI\,FONTS\/\fR
+install FONTS [default=unicode]
+.TP
+\fB\-\-install\-modules\fR=\fI\,MODULES\/\fR
+install only MODULES and their dependencies
+[default=all]
+.TP
+\fB\-k\fR, \fB\-\-pubkey\fR=\fI\,FILE\/\fR
+embed FILE as public key for signature checking
+.TP
+\fB\-\-locale\-directory\fR=\fI\,DIR\/\fR use translations under DIR
+[default=/usr/share/locale]
+.TP
+\fB\-\-locales\fR=\fI\,LOCALES\/\fR
+install only LOCALES [default=all]
+.TP
+\fB\-\-modules\fR=\fI\,MODULES\/\fR
+pre\-load specified modules MODULES
+.TP
+\fB\-\-sbat\fR=\fI\,FILE\/\fR
+SBAT metadata
+.TP
+\fB\-\-themes\fR=\fI\,THEMES\/\fR
+install THEMES [default=starfield]
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\fB\-\-core\-compress\fR=\fI\,xz\/\fR|none|auto
+choose the compression to use for core image
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+save output in FILE [required]
+.TP
+\fB\-O\fR, \fB\-\-format\fR=\fI\,FILE\/\fR
+generate an image in FORMAT
+available formats: i386\-coreboot, i386\-multiboot,
+i386\-pc, i386\-xen_pvh, i386\-pc\-pxe,
+i386\-pc\-eltorito, i386\-efi, i386\-ieee1275,
+i386\-qemu, x86_64\-efi, i386\-xen, x86_64\-xen,
+mipsel\-yeeloong\-flash, mipsel\-fuloong2f\-flash,
+mipsel\-loongson\-elf, powerpc\-ieee1275,
+sparc64\-ieee1275\-raw, sparc64\-ieee1275\-cdcore,
+sparc64\-ieee1275\-aout, ia64\-efi, mips\-arc,
+mipsel\-arc, mipsel\-qemu_mips\-elf,
+mips\-qemu_mips\-flash, mipsel\-qemu_mips\-flash,
+mips\-qemu_mips\-elf, arm\-uboot,
+arm\-coreboot\-vexpress, arm\-coreboot\-veyron,
+arm\-efi, arm64\-efi, riscv32\-efi, riscv64\-efi
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.PP
+Graft point syntax (E.g. \fI\,/boot/grub/grub\/\fP.cfg=./grub.cfg) is accepted
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkimage (1)
+.PP
+The full documentation for
+.B grub-mkstandalone
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkstandalone
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkstandalone
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-mount.1 b/manual/GNU_grub/original/man1/grub-mount.1
new file mode 100644 (file)
index 0000000..978c4a8
--- /dev/null
@@ -0,0 +1,48 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MOUNT "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-mount \- export GRUB filesystem with FUSE
+.SH SYNOPSIS
+.B grub-mount
+[\fI\,OPTION\/\fR...] \fI\,IMAGE1 \/\fR[\fI\,IMAGE2 \/\fR...] \fI\,MOUNTPOINT\/\fR
+.SH DESCRIPTION
+Debug tool for filesystem driver.
+.TP
+\fB\-C\fR, \fB\-\-crypto\fR
+Mount crypto devices.
+.TP
+\fB\-d\fR, \fB\-\-debug\fR=\fI\,STRING\/\fR
+Set debug environment variable.
+.TP
+\fB\-K\fR, \fB\-\-zfs\-key\fR=\fI\,FILE\/\fR|prompt
+Load zfs crypto key.
+.TP
+\fB\-r\fR, \fB\-\-root\fR=\fI\,DEVICE_NAME\/\fR
+Set root device.
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "SEE ALSO"
+The full documentation for
+.B grub-mount
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mount
+programs are properly installed at your site, the command
+.IP
+.B info grub-mount
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-render-label.1 b/manual/GNU_grub/original/man1/grub-render-label.1
new file mode 100644 (file)
index 0000000..a5a78fd
--- /dev/null
@@ -0,0 +1,56 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-RENDER-LABEL "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-render-label \- generate a .disk_label for Apple Macs.
+.SH SYNOPSIS
+.B grub-render-label
+[\fI\,OPTION\/\fR...] [\fI\,OPTIONS\/\fR]
+.SH DESCRIPTION
+Render Apple .disk_label.
+.TP
+\fB\-b\fR, \fB\-\-bgcolor\fR=\fI\,COLOR\/\fR
+use COLOR for background
+.TP
+\fB\-c\fR, \fB\-\-color\fR=\fI\,COLOR\/\fR
+use COLOR for text
+.TP
+\fB\-f\fR, \fB\-\-font\fR=\fI\,FILE\/\fR
+use FILE as font (PF2).
+.TP
+\fB\-i\fR, \fB\-\-input\fR=\fI\,FILE\/\fR
+read text from FILE.
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+set output filename. Default is STDOUT
+.TP
+\fB\-t\fR, \fB\-\-text\fR=\fI\,STRING\/\fR
+set the label to render
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+The full documentation for
+.B grub-render-label
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-render-label
+programs are properly installed at your site, the command
+.IP
+.B info grub-render-label
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-script-check.1 b/manual/GNU_grub/original/man1/grub-script-check.1
new file mode 100644 (file)
index 0000000..b3f2dd9
--- /dev/null
@@ -0,0 +1,37 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-SCRIPT-CHECK "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-script-check \- check grub.cfg for syntax errors
+.SH SYNOPSIS
+.B grub-script-check
+[\fI\,OPTION\/\fR...] [\fI\,PATH\/\fR]
+.SH DESCRIPTION
+Checks GRUB script configuration file for syntax errors.
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkconfig (8)
+.PP
+The full documentation for
+.B grub-script-check
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-script-check
+programs are properly installed at your site, the command
+.IP
+.B info grub-script-check
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man1/grub-syslinux2cfg.1 b/manual/GNU_grub/original/man1/grub-syslinux2cfg.1
new file mode 100644 (file)
index 0000000..c6aece6
--- /dev/null
@@ -0,0 +1,68 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-SYSLINUX2CFG "1" "October 2021" "GRUB 2.06" "User Commands"
+.SH NAME
+grub-syslinux2cfg \- transform syslinux config into grub.cfg
+.SH SYNOPSIS
+.B grub-syslinux2cfg
+[\fI\,OPTION\/\fR...] \fI\,FILE\/\fR
+.SH DESCRIPTION
+Transform syslinux config into GRUB one.
+.TP
+\fB\-c\fR, \fB\-\-cwd\fR=\fI\,DIR\/\fR
+current directory of syslinux [default is parent
+directory of input file].
+.TP
+\fB\-i\fR, \fB\-\-isolinux\fR
+assume input is an isolinux configuration file.
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+write output to FILE [default=stdout].
+.TP
+\fB\-p\fR, \fB\-\-pxelinux\fR
+assume input is a pxelinux configuration file.
+.TP
+\fB\-r\fR, \fB\-\-root\fR=\fI\,DIR\/\fR
+root directory of the syslinux disk [default=/].
+.TP
+\fB\-s\fR, \fB\-\-syslinux\fR
+assume input is a syslinux configuration file.
+.TP
+\fB\-t\fR, \fB\-\-target\-root\fR=\fI\,DIR\/\fR
+root directory as it will be seen on runtime
+[default=/].
+.TP
+\fB\-T\fR, \fB\-\-target\-cwd\fR=\fI\,DIR\/\fR
+current directory of syslinux as it will be seen
+on runtime  [default is parent directory of input
+file].
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-menulst2cfg (8)
+.PP
+The full documentation for
+.B grub-syslinux2cfg
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-syslinux2cfg
+programs are properly installed at your site, the command
+.IP
+.B info grub-syslinux2cfg
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-bios-setup.8 b/manual/GNU_grub/original/man8/grub-bios-setup.8
new file mode 100644 (file)
index 0000000..cef3955
--- /dev/null
@@ -0,0 +1,75 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-BIOS-SETUP "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-bios-setup \- set up a device to boot using GRUB
+.SH SYNOPSIS
+.B grub-bios-setup
+[\fI\,OPTION\/\fR...] \fI\,DEVICE\/\fR
+.SH DESCRIPTION
+Set up images to boot from DEVICE.
+.PP
+You should not normally run this program directly.  Use grub\-install instead.
+.TP
+\fB\-a\fR, \fB\-\-allow\-floppy\fR
+make the drive also bootable as floppy (default
+for fdX devices). May break on some BIOSes.
+.TP
+\fB\-b\fR, \fB\-\-boot\-image\fR=\fI\,FILE\/\fR
+use FILE as the boot image [default=boot.img]
+.TP
+\fB\-c\fR, \fB\-\-core\-image\fR=\fI\,FILE\/\fR
+use FILE as the core image [default=core.img]
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use GRUB files in the directory DIR
+[default=/boot/grub]
+.TP
+\fB\-f\fR, \fB\-\-force\fR
+install even if problems are detected
+.TP
+\fB\-m\fR, \fB\-\-device\-map\fR=\fI\,FILE\/\fR
+use FILE as the device map
+[default=/boot/grub/device.map]
+.TP
+\fB\-\-no\-rs\-codes\fR
+Do not apply any reed\-solomon codes when
+embedding core.img. This option is only available
+on x86 BIOS targets.
+.TP
+\fB\-s\fR, \fB\-\-skip\-fs\-probe\fR
+do not probe for filesystems in DEVICE
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.PP
+DEVICE must be an OS device (e.g. \fI\,/dev/sda\/\fP).
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-install (8),
+.BR grub-mkimage (1),
+.BR grub-mkrescue (1)
+.PP
+The full documentation for
+.B grub-bios-setup
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-bios-setup
+programs are properly installed at your site, the command
+.IP
+.B info grub-bios-setup
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-install.8 b/manual/GNU_grub/original/man8/grub-install.8
new file mode 100644 (file)
index 0000000..678f8e0
--- /dev/null
@@ -0,0 +1,160 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-INSTALL "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-install \- install GRUB to a device
+.SH SYNOPSIS
+.B grub-install
+[\fI\,OPTION\/\fR...] [\fI\,OPTION\/\fR] [\fI\,INSTALL_DEVICE\/\fR]
+.SH DESCRIPTION
+Install GRUB on your drive.
+.TP
+\fB\-\-compress\fR=\fI\,no\/\fR|xz|gz|lzo
+compress GRUB files [optional]
+.TP
+\fB\-\-disable\-shim\-lock\fR
+disable shim_lock verifier
+.TP
+\fB\-\-dtb\fR=\fI\,FILE\/\fR
+embed a specific DTB
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use images and modules under DIR
+[default=/usr/lib/grub/<platform>]
+.TP
+\fB\-\-fonts\fR=\fI\,FONTS\/\fR
+install FONTS [default=unicode]
+.TP
+\fB\-\-install\-modules\fR=\fI\,MODULES\/\fR
+install only MODULES and their dependencies
+[default=all]
+.TP
+\fB\-k\fR, \fB\-\-pubkey\fR=\fI\,FILE\/\fR
+embed FILE as public key for signature checking
+.TP
+\fB\-\-locale\-directory\fR=\fI\,DIR\/\fR use translations under DIR
+[default=/usr/share/locale]
+.TP
+\fB\-\-locales\fR=\fI\,LOCALES\/\fR
+install only LOCALES [default=all]
+.TP
+\fB\-\-modules\fR=\fI\,MODULES\/\fR
+pre\-load specified modules MODULES
+.TP
+\fB\-\-sbat\fR=\fI\,FILE\/\fR
+SBAT metadata
+.TP
+\fB\-\-themes\fR=\fI\,THEMES\/\fR
+install THEMES [default=starfield]
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\fB\-\-allow\-floppy\fR
+make the drive also bootable as floppy (default
+for fdX devices). May break on some BIOSes.
+.TP
+\fB\-\-boot\-directory\fR=\fI\,DIR\/\fR
+install GRUB images under the directory DIR/grub
+instead of the boot/grub directory
+.TP
+\fB\-\-bootloader\-id\fR=\fI\,ID\/\fR
+the ID of bootloader. This option is only
+available on EFI and Macs.
+.TP
+\fB\-\-core\-compress\fR=\fI\,xz\/\fR|none|auto
+choose the compression to use for core image
+.TP
+\fB\-\-disk\-module\fR=\fI\,MODULE\/\fR
+disk module to use (biosdisk or native). This
+option is only available on BIOS target.
+.TP
+\fB\-\-efi\-directory\fR=\fI\,DIR\/\fR
+use DIR as the EFI System Partition root.
+.TP
+\fB\-\-force\fR
+install even if problems are detected
+.TP
+\fB\-\-force\-file\-id\fR
+use identifier file even if UUID is available
+.TP
+\fB\-\-label\-bgcolor\fR=\fI\,COLOR\/\fR
+use COLOR for label background
+.TP
+\fB\-\-label\-color\fR=\fI\,COLOR\/\fR
+use COLOR for label
+.TP
+\fB\-\-label\-font\fR=\fI\,FILE\/\fR
+use FILE as font for label
+.HP
+\fB\-\-macppc\-directory\fR=\fI\,DIR\/\fR use DIR for PPC MAC install.
+.TP
+\fB\-\-no\-bootsector\fR
+do not install bootsector
+.TP
+\fB\-\-no\-nvram\fR
+don't update the `boot\-device'/`Boot*' NVRAM
+variables. This option is only available on EFI
+and IEEE1275 targets.
+.TP
+\fB\-\-no\-rs\-codes\fR
+Do not apply any reed\-solomon codes when
+embedding core.img. This option is only available
+on x86 BIOS targets.
+.TP
+\fB\-\-product\-version\fR=\fI\,STRING\/\fR
+use STRING as product version
+.TP
+\fB\-\-recheck\fR
+delete device map if it already exists
+.TP
+\fB\-\-removable\fR
+the installation device is removable. This option
+is only available on EFI.
+.TP
+\fB\-s\fR, \fB\-\-skip\-fs\-probe\fR
+do not probe for filesystems in DEVICE
+.TP
+\fB\-\-target\fR=\fI\,TARGET\/\fR
+install GRUB for TARGET platform
+[default=i386\-pc]; available targets:
+arm\-coreboot, arm\-efi, arm\-uboot, arm64\-efi,
+i386\-coreboot, i386\-efi, i386\-ieee1275,
+i386\-multiboot, i386\-pc, i386\-qemu, i386\-xen,
+i386\-xen_pvh, ia64\-efi, mips\-arc, mips\-qemu_mips,
+mipsel\-arc, mipsel\-loongson, mipsel\-qemu_mips,
+powerpc\-ieee1275, riscv32\-efi, riscv64\-efi,
+sparc64\-ieee1275, x86_64\-efi, x86_64\-xen
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.PP
+INSTALL_DEVICE must be system device filename.
+grub\-install copies GRUB images into boot/grub.  On some platforms, it may
+also install GRUB into the boot sector.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-mkconfig (8),
+.BR grub-mkimage (1),
+.BR grub-mkrescue (1)
+.PP
+The full documentation for
+.B grub-install
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-install
+programs are properly installed at your site, the command
+.IP
+.B info grub-install
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-macbless.8 b/manual/GNU_grub/original/man8/grub-macbless.8
new file mode 100644 (file)
index 0000000..ad69e38
--- /dev/null
@@ -0,0 +1,43 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MACBLESS "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-macbless \- bless a mac file/directory
+.SH SYNOPSIS
+.B grub-macbless
+[\fI\,OPTION\/\fR...] \fI\,--ppc PATH|--x86 FILE\/\fR
+.SH DESCRIPTION
+Mac\-style bless on HFS or HFS+
+.TP
+\fB\-p\fR, \fB\-\-ppc\fR
+bless for ppc\-based macs
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\fB\-x\fR, \fB\-\-x86\fR
+bless for x86\-based macs
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-install (1)
+.PP
+The full documentation for
+.B grub-macbless
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-macbless
+programs are properly installed at your site, the command
+.IP
+.B info grub-macbless
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-mkconfig.8 b/manual/GNU_grub/original/man8/grub-mkconfig.8
new file mode 100644 (file)
index 0000000..d473c93
--- /dev/null
@@ -0,0 +1,34 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-MKCONFIG "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-mkconfig \- generate a GRUB configuration file
+.SH SYNOPSIS
+.B grub-mkconfig
+[\fI\,OPTION\/\fR]
+.SH DESCRIPTION
+Generate a grub config file
+.TP
+\fB\-o\fR, \fB\-\-output\fR=\fI\,FILE\/\fR
+output generated config to FILE [default=stdout]
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+print this message and exit
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print the version information and exit
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-install (8)
+.PP
+The full documentation for
+.B grub-mkconfig
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-mkconfig
+programs are properly installed at your site, the command
+.IP
+.B info grub-mkconfig
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-ofpathname.8 b/manual/GNU_grub/original/man8/grub-ofpathname.8
new file mode 100644 (file)
index 0000000..5ab0ee6
--- /dev/null
@@ -0,0 +1,23 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-OFPATHNAME "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-ofpathname \- find OpenBOOT path for a device
+.SH SYNOPSIS
+.B grub-ofpathname
+\fI\,DEVICE\/\fR
+.SH DESCRIPTION
+
+.SH "SEE ALSO"
+.BR grub-probe (8)
+.PP
+The full documentation for
+.B grub-ofpathname
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-ofpathname
+programs are properly installed at your site, the command
+.IP
+.B info grub-ofpathname
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-probe.8 b/manual/GNU_grub/original/man8/grub-probe.8
new file mode 100644 (file)
index 0000000..472724d
--- /dev/null
@@ -0,0 +1,61 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-PROBE "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-probe \- probe device information for GRUB
+.SH SYNOPSIS
+.B grub-probe
+[\fI\,OPTION\/\fR...] [\fI\,OPTION\/\fR]... [\fI\,PATH|DEVICE\/\fR]
+.SH DESCRIPTION
+Probe device information for a given path (or device, if the \fB\-d\fR option is
+given).
+.TP
+\fB\-0\fR
+separate items in output using ASCII NUL
+characters
+.TP
+\fB\-d\fR, \fB\-\-device\fR
+given argument is a system device, not a path
+.TP
+\fB\-m\fR, \fB\-\-device\-map\fR=\fI\,FILE\/\fR
+use FILE as the device map
+[default=/boot/grub/device.map]
+.TP
+\fB\-t\fR, \fB\-\-target\fR=\fI\,TARGET\/\fR
+print TARGET
+available targets: abstraction, arc_hints,
+baremetal_hints, bios_hints, compatibility_hint,
+cryptodisk_uuid, device, disk, drive, efi_hints,
+fs, fs_label, fs_uuid, gpt_parttype,
+hints_string, ieee1275_hints, msdos_parttype,
+partmap, partuuid, zero_check [default=fs]
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-fstest (1)
+.PP
+The full documentation for
+.B grub-probe
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-probe
+programs are properly installed at your site, the command
+.IP
+.B info grub-probe
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-reboot.8 b/manual/GNU_grub/original/man8/grub-reboot.8
new file mode 100644 (file)
index 0000000..2cc0dfb
--- /dev/null
@@ -0,0 +1,44 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-REBOOT "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-reboot \- set the default boot entry for GRUB, for the next boot only
+.SH SYNOPSIS
+.B grub-reboot
+[\fI\,OPTION\/\fR] \fI\,MENU_ENTRY\/\fR
+.SH DESCRIPTION
+Set the default boot menu entry for GRUB, for the next boot only.
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+print this message and exit
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print the version information and exit
+.TP
+\fB\-\-boot\-directory\fR=\fI\,DIR\/\fR
+expect GRUB images under the directory DIR/grub
+instead of the \fI\,/boot/grub\/\fP directory
+.PP
+MENU_ENTRY is a number, a menu item title or a menu item identifier. Please note that menu items in
+submenus or sub\-submenus require specifying the submenu components and then the
+menu item component. The titles should be separated using the greater\-than
+character (>) with no extra spaces. Depending on your shell some characters including > may need escaping. More information about this is available
+in the GRUB Manual in the section about the 'default' command.
+.PP
+NOTE: In cases where GRUB cannot write to the environment block, such as when it is stored on an MDRAID or LVM device, the chosen boot menu entry will remain the default even after reboot.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-set-default (8),
+.BR grub-editenv (1)
+.PP
+The full documentation for
+.B grub-reboot
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-reboot
+programs are properly installed at your site, the command
+.IP
+.B info grub-reboot
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-set-default.8 b/manual/GNU_grub/original/man8/grub-set-default.8
new file mode 100644 (file)
index 0000000..8e78b53
--- /dev/null
@@ -0,0 +1,39 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-SET-DEFAULT "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-set-default \- set the saved default boot entry for GRUB
+.SH SYNOPSIS
+.B grub-set-default
+[\fI\,OPTION\/\fR] \fI\,MENU_ENTRY\/\fR
+.SH DESCRIPTION
+Set the default boot menu entry for GRUB.
+This requires setting GRUB_DEFAULT=saved in \fI\,/etc/default/grub\/\fP.
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+print this message and exit
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print the version information and exit
+.TP
+\fB\-\-boot\-directory\fR=\fI\,DIR\/\fR
+expect GRUB images under the directory DIR/grub
+instead of the \fI\,/boot/grub\/\fP directory
+.PP
+MENU_ENTRY is a number, a menu item title or a menu item identifier.
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-reboot (8),
+.BR grub-editenv (1)
+.PP
+The full documentation for
+.B grub-set-default
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-set-default
+programs are properly installed at your site, the command
+.IP
+.B info grub-set-default
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/original/man8/grub-sparc64-setup.8 b/manual/GNU_grub/original/man8/grub-sparc64-setup.8
new file mode 100644 (file)
index 0000000..284c5f3
--- /dev/null
@@ -0,0 +1,75 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.48.5.
+.TH GRUB-SPARC64-SETUP "8" "October 2021" "GRUB 2.06" "System Administration Utilities"
+.SH NAME
+grub-sparc64-setup \- set up a device to boot using GRUB
+.SH SYNOPSIS
+.B grub-sparc64-setup
+[\fI\,OPTION\/\fR...] \fI\,DEVICE\/\fR
+.SH DESCRIPTION
+Set up images to boot from DEVICE.
+.PP
+You should not normally run this program directly.  Use grub\-install instead.
+.TP
+\fB\-a\fR, \fB\-\-allow\-floppy\fR
+make the drive also bootable as floppy (default
+for fdX devices). May break on some BIOSes.
+.TP
+\fB\-b\fR, \fB\-\-boot\-image\fR=\fI\,FILE\/\fR
+use FILE as the boot image [default=boot.img]
+.TP
+\fB\-c\fR, \fB\-\-core\-image\fR=\fI\,FILE\/\fR
+use FILE as the core image [default=core.img]
+.TP
+\fB\-d\fR, \fB\-\-directory\fR=\fI\,DIR\/\fR
+use GRUB files in the directory DIR
+[default=/boot/grub]
+.TP
+\fB\-f\fR, \fB\-\-force\fR
+install even if problems are detected
+.TP
+\fB\-m\fR, \fB\-\-device\-map\fR=\fI\,FILE\/\fR
+use FILE as the device map
+[default=/boot/grub/device.map]
+.TP
+\fB\-\-no\-rs\-codes\fR
+Do not apply any reed\-solomon codes when
+embedding core.img. This option is only available
+on x86 BIOS targets.
+.TP
+\fB\-s\fR, \fB\-\-skip\-fs\-probe\fR
+do not probe for filesystems in DEVICE
+.TP
+\fB\-v\fR, \fB\-\-verbose\fR
+print verbose messages.
+.TP
+\-?, \fB\-\-help\fR
+give this help list
+.TP
+\fB\-\-usage\fR
+give a short usage message
+.TP
+\fB\-V\fR, \fB\-\-version\fR
+print program version
+.PP
+Mandatory or optional arguments to long options are also mandatory or optional
+for any corresponding short options.
+.PP
+DEVICE must be an OS device (e.g. \fI\,/dev/sda\/\fP).
+.SH "REPORTING BUGS"
+Report bugs to <bug\-grub@gnu.org>.
+.SH "SEE ALSO"
+.BR grub-install (8),
+.BR grub-mkimage (1),
+.BR grub-mkrescue (1)
+.PP
+The full documentation for
+.B grub-sparc64-setup
+is maintained as a Texinfo manual.  If the
+.B info
+and
+.B grub-sparc64-setup
+programs are properly installed at your site, the command
+.IP
+.B info grub-sparc64-setup
+.PP
+should give you access to the complete manual.
diff --git a/manual/GNU_grub/translation_list b/manual/GNU_grub/translation_list
new file mode 100644 (file)
index 0000000..4b28d54
--- /dev/null
@@ -0,0 +1,28 @@
+▲:grub:2.06:2021/06/08:grub-editenv:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-file:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-fstest:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-glue-efi:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-kbdcomp:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-macho2img:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-menulst2cfg:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkfont:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkimage:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mklayout:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mknetdir:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkpasswd-pbkdf2:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkrelpath:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkrescue:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkstandalone:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mount:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-render-label:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-script-check:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-syslinux2cfg:1:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-bios-setup:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-install:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-macbless:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-mkconfig:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-ofpathname:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-probe:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-reboot:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-set-default:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA:
+▲:grub:2.06:2021/06/08:grub-sparc64-setup:8:2022/02/06::michio_matsuyama@yahoo.co.jp:Michio MATSUYAMA: