1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-23 09:03:23 -05:00

This completes the init and mtd_init recognization .. added single.

This commit is contained in:
freesource 2002-03-07 17:54:23 +00:00
parent 967df903ea
commit ecc03b1980

View File

@ -1806,8 +1806,9 @@ sub uml_box {
$init =~ s/\'//g;
$init =~ s/\///;
}
elsif ( m,\s+([0-9A-CS]{1}), ) {
$init = $1;
elsif ( m,\s+([0-9A-CS]{1})|\s+(single), ) {
$init = $1 if $1;
$init = $2 if $2;
chomp $init;
$init = "sbin/init " . $init;
}