mirror of
https://github.com/fspc/gbootroot.git
synced 2025-04-04 07:43:22 -04:00
Cleaned-up, works nicely .. non-root fs creation.
This commit is contained in:
parent
05da1a4a31
commit
6ce5f51284
@ -160,12 +160,28 @@ sub read_contents_file {
|
||||
}
|
||||
$contents_file_tmp = $contents_file;
|
||||
|
||||
unlink("$mnt/device_table.txt") if -e "$mnt/device_table.txt";
|
||||
|
||||
|
||||
# Need to know whether genext2fs is being used
|
||||
my $fs_type = (split(/\s/,$main::makefs))[0];
|
||||
|
||||
# Open DEVICE_TABLE
|
||||
if ( $fs_type eq "genext2fs" ) {
|
||||
|
||||
unlink("$mnt/device_table.txt") if -e "$mnt/device_table.txt";
|
||||
system "rm -rf $mnt/loopback";
|
||||
|
||||
#<path> <type> <mode> <uid> <gid> <major> <minor> <start><inc><count>
|
||||
# /dev is always needs to be made automatically
|
||||
open(DEVICE_TABLE, ">$mnt/device_table.txt") or
|
||||
($error = error("$mnt/device_table.txt: $!"));
|
||||
return "ERROR"if $error && $error eq "ERROR";
|
||||
|
||||
print DEVICE_TABLE
|
||||
"# <path>\t<type>\t<mode>\t<uid>\t<gid>\t<major>\t<minor>" .
|
||||
"\t<start>\t<inc>\t<count>\n";
|
||||
print DEVICE_TABLE "/dev\t\td\t0755\t-\t-\t-\t-\t-\t-\t-\n";
|
||||
}
|
||||
|
||||
info(0, "\n\nPASS 1: Reading $contents_file");
|
||||
info(0, "\n");
|
||||
|
||||
@ -201,6 +217,8 @@ sub read_contents_file {
|
||||
|
||||
,x ) {
|
||||
|
||||
if ( $line !~ m,<=|->, ) { # avoid repeats
|
||||
|
||||
my ($expr, $tmp_line);
|
||||
for $expr (split(' ', $line)) {
|
||||
if ( $expr && $expr =~ m,^/dev$|^/dev/, ) {
|
||||
@ -210,7 +228,8 @@ sub read_contents_file {
|
||||
if ($#globbed == -1) {
|
||||
cf_warn($contents_file, $expr,
|
||||
"Warning: No files matched $expr");
|
||||
} elsif (!($#globbed == 0 and $globbed[0] eq $expr)) {
|
||||
} elsif (!($#globbed == 0 and
|
||||
$globbed[0] eq $expr)) {
|
||||
info(1, "Expanding $expr to @globbed\n");
|
||||
}
|
||||
|
||||
@ -237,6 +256,7 @@ sub read_contents_file {
|
||||
else {
|
||||
next LINE;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -372,6 +392,11 @@ sub read_contents_file {
|
||||
} # End of FILE loop
|
||||
} # End of LINE loop
|
||||
|
||||
|
||||
if ( $fs_type eq "genext2fs" ) {
|
||||
close(DEVICE_TABLE);
|
||||
}
|
||||
|
||||
info(0, "\nDone with $contents_file\n\n");
|
||||
close(CONTENTS) or ($error = error("close on $contents_file: $!"));
|
||||
return "ERROR"if $error && $error eq "ERROR";
|
||||
@ -1687,10 +1712,6 @@ sub device_table {
|
||||
my $mnt = shift @devices;
|
||||
my $error;
|
||||
|
||||
# /dev is always needs to be made automatically
|
||||
open(DEVICE_TABLE, ">>$mnt/device_table.txt") or
|
||||
($error = error("$mnt/device_table.txt: $!"));
|
||||
return "ERROR"if $error && $error eq "ERROR";
|
||||
|
||||
#<path> <type> <mode> <uid> <gid> <major> <minor> <start><inc><count>
|
||||
# start and inc are the tricky parts with the glob so they are being
|
||||
@ -1698,6 +1719,9 @@ sub device_table {
|
||||
|
||||
foreach my $device (@devices) {
|
||||
my ( $mode, $uid, $gid ) = (stat($device))[2,4,5];
|
||||
|
||||
if ( $mode ) {
|
||||
|
||||
$mode = sprintf( "%04o", $mode );
|
||||
$mode =~ /^(\d*)(\d{4})$/;
|
||||
my $type = $1;
|
||||
@ -1730,12 +1754,13 @@ sub device_table {
|
||||
|
||||
if ( $type eq "c" || $type eq "b" || $type eq "p" ) {
|
||||
print DEVICE_TABLE
|
||||
"$device\t$type\t$mode\t$uid\t$gid\t$major\t$minor\t-\t-\t-\n";
|
||||
"$device\t$type\t$mode\t$uid\t$gid\t$major\t$minor" .
|
||||
"\t-\t-\t-\n";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
close(DEVICE_TABLE);
|
||||
|
||||
} # end sub device_table
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user