[arch-releng] [RFC] [PATCH] [configs/releng] copy archiso/README to root-image/root/archiso.txt
This README file is ignored/unknown by most users, and contains valuable information for live-enviroment, about features, boot-methods, transfer/dump iso, etc... Put it in a visible location. Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> --- configs/releng/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/releng/build.sh b/configs/releng/build.sh index ab8097c..ee2923b 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -179,6 +179,7 @@ make_customize_root_image() { mkdir -p ${work_dir}/root-image/etc/pacman.d wget -O ${work_dir}/root-image/etc/pacman.d/mirrorlist 'https://www.archlinux.org/mirrorlist/?country=all&protocol=http&use_mirror_status=on' lynx -dump -nolist 'https://wiki.archlinux.org/index.php/Installation_Guide?action=render' >> ${work_dir}/root-image/root/install.txt + cp /usr/share/doc/archiso/README ${work_dir}/root-image/root/archiso.txt sed -i "s/#Server/Server/g" ${work_dir}/root-image/etc/pacman.d/mirrorlist patch ${work_dir}/root-image/usr/bin/pacman-key < ${script_path}/pacman-key-4.0.3_unattended-keyring-init.patch sed -i 's/#\(en_US\.UTF-8\)/\1/' ${work_dir}/root-image/etc/locale.gen -- 1.7.12.2
On 10/10/2012 01:58 AM, Gerardo Exequiel Pozzi wrote:
This README file is ignored/unknown by most users, and contains valuable information for live-enviroment, about features, boot-methods, transfer/dump iso, etc... Put it in a visible location.
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> --- configs/releng/build.sh | 1 + 1 file changed, 1 insertion(+)
diff --git a/configs/releng/build.sh b/configs/releng/build.sh index ab8097c..ee2923b 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -179,6 +179,7 @@ make_customize_root_image() { mkdir -p ${work_dir}/root-image/etc/pacman.d wget -O ${work_dir}/root-image/etc/pacman.d/mirrorlist 'https://www.archlinux.org/mirrorlist/?country=all&protocol=http&use_mirror_status=on' lynx -dump -nolist 'https://wiki.archlinux.org/index.php/Installation_Guide?action=render' >> ${work_dir}/root-image/root/install.txt + cp /usr/share/doc/archiso/README ${work_dir}/root-image/root/archiso.txt sed -i "s/#Server/Server/g" ${work_dir}/root-image/etc/pacman.d/mirrorlist patch ${work_dir}/root-image/usr/bin/pacman-key < ${script_path}/pacman-key-4.0.3_unattended-keyring-init.patch sed -i 's/#\(en_US\.UTF-8\)/\1/' ${work_dir}/root-image/etc/locale.gen
or maybe copy to ${install_dir}/archiso.txt (/arch/archiso.txt) then a symlink in /root/archiso.txt to /run/archiso/bootmnt/arch/archiso.txt so archiso.txt can be easily readable just by opening the ISO. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 10.10.2012 07:06, schrieb Gerardo Exequiel Pozzi:
or maybe copy to ${install_dir}/archiso.txt (/arch/archiso.txt) then a symlink in /root/archiso.txt to /run/archiso/bootmnt/arch/archiso.txt
This is better. /root/archiso.txt is a bad location IMO, maybe use /usr/share/doc/archiso/README or so?
On Oct 10, 2012 10:22 AM, "Thomas Bächler" <thomas@archlinux.org> wrote:
Am 10.10.2012 07:06, schrieb Gerardo Exequiel Pozzi:
or maybe copy to ${install_dir}/archiso.txt (/arch/archiso.txt) then a symlink in /root/archiso.txt to /run/archiso/bootmnt/arch/archiso.txt
This is better. /root/archiso.txt is a bad location IMO, maybe use /usr/share/doc/archiso/README or so?
How about making it a man page? Tom
On 10/10/2012 05:27 AM, Tom Gundersen wrote:
On Oct 10, 2012 10:22 AM, "Thomas Bächler" <thomas@archlinux.org> wrote:
Am 10.10.2012 07:06, schrieb Gerardo Exequiel Pozzi:
or maybe copy to ${install_dir}/archiso.txt (/arch/archiso.txt) then a symlink in /root/archiso.txt to /run/archiso/bootmnt/arch/archiso.txt This is better. /root/archiso.txt is a bad location IMO, maybe use /usr/share/doc/archiso/README or so? How about making it a man page?
Tom
I never did a man page, If you can tell me what are the steps to do, I will be really happy :) I know I can do it by hand, but I have understood that there are utilities to simplify the work. Anyway a plaint-text, should be on the ISO filesystem. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
On 10/10/2012 05:22 AM, Thomas Bächler wrote:
Am 10.10.2012 07:06, schrieb Gerardo Exequiel Pozzi:
or maybe copy to ${install_dir}/archiso.txt (/arch/archiso.txt) then a symlink in /root/archiso.txt to /run/archiso/bootmnt/arch/archiso.txt This is better. /root/archiso.txt is a bad location IMO, maybe use /usr/share/doc/archiso/README or so?
Well I said visible, really visible. Just to see when "ls". -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
On 10/10/2012 05:22 AM, Thomas Bächler wrote:
Am 10.10.2012 07:06, schrieb Gerardo Exequiel Pozzi:
or maybe copy to ${install_dir}/archiso.txt (/arch/archiso.txt) then a symlink in /root/archiso.txt to /run/archiso/bootmnt/arch/archiso.txt This is better. /root/archiso.txt is a bad location IMO, maybe use /usr/share/doc/archiso/README or so?
maybe is time to, introduce boot options in f1.txt/f2.txt for syslinux... But I want to do this without duplication. For example I thinking in split archiso/README is README.boot, README.pxe, README.build, README.issues, etc... -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
On 10/10/2012 01:58 AM, Gerardo Exequiel Pozzi wrote:
This README file is ignored/unknown by most users, and contains valuable information for live-enviroment, about features, boot-methods, transfer/dump iso, etc... Put it in a visible location.
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> --- configs/releng/build.sh | 1 + 1 file changed, 1 insertion(+)
diff --git a/configs/releng/build.sh b/configs/releng/build.sh index ab8097c..ee2923b 100755 --- a/configs/releng/build.sh +++ b/configs/releng/build.sh @@ -179,6 +179,7 @@ make_customize_root_image() { mkdir -p ${work_dir}/root-image/etc/pacman.d wget -O ${work_dir}/root-image/etc/pacman.d/mirrorlist 'https://www.archlinux.org/mirrorlist/?country=all&protocol=http&use_mirror_status=on' lynx -dump -nolist 'https://wiki.archlinux.org/index.php/Installation_Guide?action=render' >> ${work_dir}/root-image/root/install.txt + cp /usr/share/doc/archiso/README ${work_dir}/root-image/root/archiso.txt sed -i "s/#Server/Server/g" ${work_dir}/root-image/etc/pacman.d/mirrorlist patch ${work_dir}/root-image/usr/bin/pacman-key < ${script_path}/pacman-key-4.0.3_unattended-keyring-init.patch sed -i 's/#\(en_US\.UTF-8\)/\1/' ${work_dir}/root-image/etc/locale.gen
Discarded. New patch will come... -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
participants (3)
-
Gerardo Exequiel Pozzi
-
Thomas Bächler
-
Tom Gundersen