Re: [lfs-dev] LVM in lfs bootscripts

2012-03-15 Thread Qrux
On Mar 15, 2012, at 12:09 PM, Bruce Dubbs wrote: > Qrux wrote: > >> IMO, LVM and mdraid should be done super-early (whether embedded in >> some other script or separated into their own). It should go right >> after modules are loaded (S05modules in rcS.d, so maybe S06LVM and >> S06md) for the p

Re: [lfs-dev] LVM in lfs bootscripts

2012-03-15 Thread Qrux
On Mar 15, 2012, at 12:09 PM, Bruce Dubbs wrote: > Qrux wrote: > >> IMO, LVM and mdraid should be done super-early (whether embedded in >> some other script or separated into their own). It should go right >> after modules are loaded (S05modules in rcS.d, so maybe S06LVM and >> S06md) for the p

Re: [lfs-dev] LVM in lfs bootscripts

2012-03-15 Thread Bruce Dubbs
Qrux wrote: > IMO, LVM and mdraid should be done super-early (whether embedded in > some other script or separated into their own). It should go right > after modules are loaded (S05modules in rcS.d, so maybe S06LVM and > S06md) for the people doing fancy initramfs boots with modules. > Started e

Re: [lfs-dev] LVM in lfs bootscripts

2012-03-15 Thread Qrux
On Mar 15, 2012, at 9:02 AM, Bruce Dubbs wrote: > Nathan Coulson wrote: >> S30checkfs, we added >> >> # If any LVM based partitions are on the system, ensure they >> # are activated so they can be checked/used. >> if [ -x /sbin/vgchange ]; then >> /sbin/vgchange -a y >/dev

Re: [lfs-dev] LVM in lfs bootscripts

2012-03-15 Thread Bruce Dubbs
Nathan Coulson wrote: > S30checkfs, we added > > # If any LVM based partitions are on the system, ensure they > # are activated so they can be checked/used. > if [ -x /sbin/vgchange ]; then > /sbin/vgchange -a y >/dev/null > fi > > Normally, I would suggest that w

[lfs-dev] LVM in lfs bootscripts

2012-03-14 Thread Nathan Coulson
S30checkfs, we added # If any LVM based partitions are on the system, ensure they # are activated so they can be checked/used. if [ -x /sbin/vgchange ]; then /sbin/vgchange -a y >/dev/null fi Normally, I would suggest that we keep non LFS packages out of the boots