Browse Source

Oops, this text wasn't necessary, it was just a little bug related to

pasting.
master
freesource 22 years ago
parent
commit
126be83ab2
  1. 6
      README
  2. 4
      gbootroot

6
README

@ -1,4 +1,4 @@
$Id: README,v 1.24 2003/02/12 17:18:36 freesource Exp $ $Id: README,v 1.25 2003/02/13 19:35:34 freesource Exp $
Program: gBootRoot pronounced "bOOtrOOt" Program: gBootRoot pronounced "bOOtrOOt"
License: GNU General Public License License: GNU General Public License
@ -65,9 +65,7 @@ If you build the package as a non-root user, and you don't have
permissions to write to system directories you can always run permissions to write to system directories you can always run
gbootroot from the immediate source directory "./gbootroot --home ." gbootroot from the immediate source directory "./gbootroot --home ."
or "perl -I . ./gbootroot --home ." if there is already another or "perl -I . ./gbootroot --home ." if there is already another
installed version on the system. You will want to put the installed version on the system.
uml-utilities found under user-mode-linux/usr/bin and
user-mode-linux/usr/lib/uml in your $PATH.
To install on the system type "make install" and follow the To install on the system type "make install" and follow the
instructions in the "Important Configurations" section near the bottom instructions in the "Important Configurations" section near the bottom

4
gbootroot

@ -240,12 +240,12 @@ BEGIN {
my $pwd = `pwd`; chomp $pwd; my $pwd = `pwd`; chomp $pwd;
my $tools = grep(/$pwd\/user-mode-linux\/usr\/bin/,$ENV{'PATH'}); my $tools = grep(/$pwd\/user-mode-linux\/usr\/bin/,$ENV{'PATH'});
if ($sbin == 0) { if ($tools == 0) {
$ENV{'PATH'} = "$pwd/user-mode-linux/usr/bin:" . $ENV{'PATH'}; $ENV{'PATH'} = "$pwd/user-mode-linux/usr/bin:" . $ENV{'PATH'};
} }
$tools = grep(/$pwd\/user-mode-linux\/usr\/lib\/uml/,$ENV{'PATH'}); $tools = grep(/$pwd\/user-mode-linux\/usr\/lib\/uml/,$ENV{'PATH'});
if ($sbin == 0) { if ($tools == 0) {
$ENV{'PATH'} = "$pwd/user-mode-linux/usr/lib\/uml:" . $ENV{'PATH'}; $ENV{'PATH'} = "$pwd/user-mode-linux/usr/lib\/uml:" . $ENV{'PATH'};
} }

Loading…
Cancel
Save