Re: [Runnix-users] [Runnix-commits] SF.net SVN: runnix:[156] branches/0.3/target/generic/target_ske
Status: Alpha
Brought to you by:
krisk84
From: Philip P. <phi...@re...> - 2011-04-12 23:16:40
|
I'm not sure I see the interest of taking something that's generically useful and limiting it to be being intermingled with a single other software package that has a very small number of users as it is. On 4/12/11 4:15 PM, abe...@us... wrote: > Revision: 156 > http://runnix.svn.sourceforge.net/runnix/?rev=156&view=rev > Author: abelbeck > Date: 2011-04-12 22:15:15 +0000 (Tue, 12 Apr 2011) > > Log Message: > ----------- > runnix script, look for AstLinux files on vFAT drives only if os/astflag exists rather than the more general runnix file. This is now consistant with how the AstLinux initrd works. > > Modified Paths: > -------------- > branches/0.3/target/generic/target_skeleton/runnix > > Modified: branches/0.3/target/generic/target_skeleton/runnix > =================================================================== > --- branches/0.3/target/generic/target_skeleton/runnix 2010-12-21 15:30:09 UTC (rev 155) > +++ branches/0.3/target/generic/target_skeleton/runnix 2011-04-12 22:15:15 UTC (rev 156) > @@ -130,7 +130,7 @@ > > for x in $DRIVES; do > if mount -t iso9660 -o ro /dev/${x} $BASE 2>/dev/null; then > - if [ -f $BASE/runnix ]; then > + if [ -f $BASE/os/astflag ]; then > DEVICE=${x} > RODEV=yes > else > @@ -141,7 +141,7 @@ > > for x in $DRIVES; do > if mount -t vfat /dev/${x}1 $BASE 2>/dev/null; then > - if [ -f $BASE/runnix ]; then > + if [ -f $BASE/os/astflag ]; then > DEVICE=${x} > else > umount /dev/${x}1 > @@ -153,7 +153,7 @@ > > # Loader not found > if [ -z "$DEVICE" ]; then > - echo "Runnix device not found" > + echo "Runnix: AstLinux medium not found." > do_shell > # reboot > fi > > |