diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/bash-inst.xml | 10 | ||||
-rw-r--r-- | chapter06/chroot.xml | 7 | ||||
-rw-r--r-- | chapter06/chrootcmd.xml | 6 | ||||
-rw-r--r-- | chapter06/glibc-inst.xml | 8 | ||||
-rw-r--r-- | chapter06/m4-inst.xml | 5 |
5 files changed, 10 insertions, 26 deletions
diff --git a/chapter06/bash-inst.xml b/chapter06/bash-inst.xml index bc5c142c6..b1872638f 100644 --- a/chapter06/bash-inst.xml +++ b/chapter06/bash-inst.xml @@ -18,15 +18,7 @@ The static bash is replaced with the dynamic bash and the chroot'ed environment is re-entered by running: </para> -<blockquote><literallayout> - <userinput>mv $LFS/usr/bin/bash $LFS/usr/bin/bashbug - $LFS/bin &&</userinput> - <userinput>chroot $LFS /usr/bin/env -i HOME=/root - \</userinput> - <userinput> TERM=$TERM /bin/bash - --login</userinput> - -</literallayout></blockquote> +&c6-chrootcmd; </sect2> diff --git a/chapter06/chroot.xml b/chapter06/chroot.xml index 906d71b48..17745173c 100644 --- a/chapter06/chroot.xml +++ b/chapter06/chroot.xml @@ -13,12 +13,7 @@ everything a user does will be restricted to the LFS partition (since / is actually /mnt/lfs but the shell doesn't know that). </para> -<blockquote><literallayout> - <userinput>cd $LFS &&</userinput> - <userinput>chroot $LFS /usr/bin/env -i HOME=/root - \</userinput> - <userinput> TERM=$TERM /bin/bash --login</userinput> -</literallayout></blockquote> +&c6-chrootcmd; <para> The TERM=$TERM construction will set the $TERM value inside diff --git a/chapter06/chrootcmd.xml b/chapter06/chrootcmd.xml new file mode 100644 index 000000000..9b3b7e881 --- /dev/null +++ b/chapter06/chrootcmd.xml @@ -0,0 +1,6 @@ +<blockquote><literallayout> + <userinput>cd $LFS &&</userinput> + <userinput>chroot $LFS /usr/bin/env -i HOME=/root + \</userinput> + <userinput> TERM=$TERM /bin/bash --login</userinput> +</literallayout></blockquote> diff --git a/chapter06/glibc-inst.xml b/chapter06/glibc-inst.xml index c4062bbde..ba7463e4a 100644 --- a/chapter06/glibc-inst.xml +++ b/chapter06/glibc-inst.xml @@ -69,13 +69,7 @@ to ensure a properly working bash. Run the following commands to accomplish this: </para> -<blockquote><literallayout> - <userinput>logout</userinput> - <userinput>chroot $LFS /usr/bin/env -i HOME=/root - \</userinput> - <userinput> TERM=$TERM /bin/bash --login</userinput> - -</literallayout></blockquote> +&c6-chrootcmd; </sect2> diff --git a/chapter06/m4-inst.xml b/chapter06/m4-inst.xml index e43aeece3..76ae89340 100644 --- a/chapter06/m4-inst.xml +++ b/chapter06/m4-inst.xml @@ -44,10 +44,7 @@ this can be done after having rebooted into the LFS system rather than chrooting into it. </para> -<blockquote><literallayout> - <userinput>chroot $LFS /usr/bin/env -i HOME=/root \</userinput> - <userinput> TERM=$TERM /bin/bash --login</userinput> -</literallayout></blockquote> +&c6-chrootcmd; </sect2> |