summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Purkrt <adam@purkrt.net>2015-08-30 00:39:41 +0200
committerGerardo Exequiel Pozzi <vmlinuz386@gmail.com>2015-09-13 14:45:20 -0300
commitd35d87f252caa97b716ce819ded9972e7c6609e4 (patch)
tree9410bc2023263e5aeeb2b518702f2a68c939d3f2 /docs
parent217a05eb86f3e8126aa61445185d1a581ae2ecb2 (diff)
downloadarchiso32-d35d87f252caa97b716ce819ded9972e7c6609e4.tar.xz
cleaner boot from loopmounted iso file
Currently, when booting loopmounted iso file, it is necessary to specify not only img_dev and img_loop (which should be sufficient), but also archisolabel or archisodevice. With this patch, archisodevice is directly populated with the correct loop device, and it is not necessary to specify the label when booting from loopmounted iso, which makes for leaner and cleaner grub.cfg.
Diffstat (limited to 'docs')
-rw-r--r--docs/README.altbootmethods4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/README.altbootmethods b/docs/README.altbootmethods
index 3c07e03..9df20ef 100644
--- a/docs/README.altbootmethods
+++ b/docs/README.altbootmethods
@@ -31,14 +31,14 @@ Note: Described method is for using with GRUB2.
menuentry "Arch Linux (x86_64)" {
set isofile="/<TARGET-PATH>/archlinux-<YYYY>.<MM>.<DD>-dual.iso"
loopback loop (hd<D>,<P>)$isofile
- linux (loop)/arch/boot/x86_64/vmlinuz archisolabel=<FS-LABEL> img_label=<TARGET-FS-LABEL> img_loop=$isofile
+ linux (loop)/arch/boot/x86_64/vmlinuz img_label=<TARGET-FS-LABEL> img_loop=$isofile
initrd (loop)/arch/boot/x86_64/archiso.img
}
menuentry "Arch Linux (i686)" {
set isofile="/<TARGET-PATH>/archlinux-<YYYY>.<MM>.<DD>-dual.iso"
loopback loop (hd<D>,<P>)$isofile
- linux (loop)/arch/boot/i686/vmlinuz archisolabel=<FS-LABEL> img_label=<TARGET-FS-LABEL> img_loop=$isofile
+ linux (loop)/arch/boot/i686/vmlinuz img_label=<TARGET-FS-LABEL> img_loop=$isofile
initrd (loop)/arch/boot/i686/archiso.img
}