[blfs-support] X unsolved and networking solved

2012-05-01 Thread Walter Webb
Sorry,I forgot to include the message. I have not used my (somewhat) older computer much since I got my newer one. During my recent network problems, I decided to upgrade from LFS-6.3. The first problem I encountered was that there was no acceleration in the X server with LFS-7.1. The problem a

Re: [blfs-support] Bootscripts of 20120409 (LFS) and 20120427 (BLFS)

2012-05-01 Thread Ken Moffat
On Tue, May 01, 2012 at 08:02:27PM -0400, alex lupu wrote: > > 2. In 'checkfs', maybe > fsck ${options} -a -A -C -T 2>/dev/null > would be better than > fsck ${options} -a -A -C -T >/dev/null > > so the user can see the progress bar on boot-up. > I still prefer just [pasted] fsck ${opt

Re: [blfs-support] Bootscripts of 20120409 (LFS) and 20120427 (BLFS)

2012-05-01 Thread Bruce Dubbs
alex lupu wrote: > Some minor inconsistencies and a suggestion > > 1. Files '20120427/contrib/lsb-v3/blfs/init.d/dbus' and > '20120427/blfs/init.d/dbus' > > # Begin /etc/init.d/dbus > Maybe: "/etc/rc.d/init.d/dbus" > > # End /etc/init.d/messagebus > Maybe: "/etc/rc.d/init.d/dbus" We not hav

[blfs-support] Bootscripts of 20120409 (LFS) and 20120427 (BLFS)

2012-05-01 Thread alex lupu
Some minor inconsistencies and a suggestion 1. Files '20120427/contrib/lsb-v3/blfs/init.d/dbus' and '20120427/blfs/init.d/dbus' # Begin /etc/init.d/dbus Maybe: "/etc/rc.d/init.d/dbus" # End /etc/init.d/messagebus Maybe: "/etc/rc.d/init.d/dbus" -- One file has # Default-Start: 3 4

Re: [blfs-support] initramfs mistake

2012-05-01 Thread Bruce Dubbs
xinglp wrote: > do_mount_root() > { >mkdir /.root >[ -n "$rootflags" ] && rootflags="$rootflags," >rootflags="$rootflags$ro" > >case "$root" in > /dev/* ) device=$root ;; > UUID=* ) eval $root; device="/dev/disk/by-uuid/$UUID" ;; > LABEL=*) eval $root; device="/d

[blfs-support] initramfs mistake

2012-05-01 Thread xinglp
do_mount_root() { mkdir /.root [ -n "$rootflags" ] && rootflags="$rootflags," rootflags="$rootflags$ro" case "$root" in /dev/* ) device=$root ;; UUID=* ) eval $root; device="/dev/disk/by-uuid/$UUID" ;; LABEL=*) eval $root; device="/dev/disk/by-uuid/$LABEL" ;; >