Characters entities should not be used inside programlisting tags since

these later are rendered as <pre></pre>.

Noticed by:	Denis SAGET <geodni@free.fr>
This commit is contained in:
Marc Fonvieille 2006-03-22 12:53:23 +00:00
parent 049d4e1ba0
commit 201d8087d2
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=27389

View file

@ -2733,7 +2733,7 @@ mkdir /mnt/var
#
if [ ! -x /sys/compile/MINI/kernel ]
then
cat &lt;&lt; EOM
cat << EOM
The MINI kernel does not exist, please create one.
Here is an example config file:
#
@ -2781,14 +2781,14 @@ fi
cp -f /sys/compile/MINI/kernel /mnt
gzip -c -best /sbin/init &gt; /mnt/sbin/init
gzip -c -best /sbin/fsck &gt; /mnt/sbin/fsck
gzip -c -best /sbin/mount &gt; /mnt/sbin/mount
gzip -c -best /sbin/halt &gt; /mnt/sbin/halt
gzip -c -best /sbin/restore &gt; /mnt/sbin/restore
gzip -c -best /sbin/init > /mnt/sbin/init
gzip -c -best /sbin/fsck > /mnt/sbin/fsck
gzip -c -best /sbin/mount > /mnt/sbin/mount
gzip -c -best /sbin/halt > /mnt/sbin/halt
gzip -c -best /sbin/restore > /mnt/sbin/restore
gzip -c -best /bin/sh &gt; /mnt/bin/sh
gzip -c -best /bin/sync &gt; /mnt/bin/sync
gzip -c -best /bin/sh > /mnt/bin/sh
gzip -c -best /bin/sync > /mnt/bin/sync
cp /root/.profile /mnt/root
@ -2815,18 +2815,18 @@ cd /
#
# create minimum file system table
#
cat &gt; /mnt/etc/fstab &lt;&lt;EOM
cat > /mnt/etc/fstab <<EOM
/dev/fd0a / ufs rw 1 1
EOM
#
# create minimum passwd file
#
cat &gt; /mnt/etc/passwd &lt;&lt;EOM
cat > /mnt/etc/passwd <<EOM
root:*:0:0:Charlie &:/root:/bin/sh
EOM
cat &gt; /mnt/etc/master.passwd &lt;&lt;EOM
cat > /mnt/etc/master.passwd <<EOM
root::0:0::0:0:Charlie &:/root:/bin/sh
EOM