• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

翻訳ドキュメント管理用


Commit MetaInfo

Revisión0db9f1c4bc43533c7477912c5c05aa1ec9ce88ee (tree)
Tiempo2022-02-06 21:59:00
Autormatsuand <30614168+matsuand@user...>
Commitermatsuand

Log Message

GNU grub 2.06: Reserve to translate.

Cambiar Resumen

Diferencia incremental

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