mirror of
				https://github.com/fspc/gbootroot.git
				synced 2025-11-04 00:05:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Perl
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/perl
 | 
						|
 | 
						|
use BootRoot::UML;
 | 
						|
 | 
						|
if ( !$ARGV[0] ) {
 | 
						|
    
 | 
						|
    die "expect_uml ubd0 ubd1 other-options mount-point preserve_permissions filesystem_command\n";
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
my $arguments = "$ARGV[0] $ARGV[1] $ARGV[2]"; 
 | 
						|
my $mount_point = "$ARGV[3]";
 | 
						|
my $preserve_permissions = "$ARGV[4]";
 | 
						|
 | 
						|
my $end = 6;
 | 
						|
my $filesystem;
 | 
						|
for ( 5 .. $end ) {
 | 
						|
    if ( $_ == 4 ) {
 | 
						|
	$filesystem = "$ARGV[4]";
 | 
						|
	# What to do with the rieserfs command
 | 
						|
	if ( $filesystem eq "mkreiserfs" ) {
 | 
						|
	    $filesystem = $filesystem . " -f -f -q";
 | 
						|
	}
 | 
						|
    }
 | 
						|
    else {
 | 
						|
	if ( $ARGV[$end] ) {
 | 
						|
	    $filesystem = $filesystem . " $ARGV[$end]";
 | 
						|
	    $end++;
 | 
						|
	}
 | 
						|
	else {
 | 
						|
	    last;
 | 
						|
	}
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
my $uml  = 
 | 
						|
  BootRoot::UML->new( login_prompt    =>  "bootroot login: ",
 | 
						|
		      arguments       =>  $arguments,
 | 
						|
		      login           =>  "root",
 | 
						|
		      password_prompt =>  "Password: ",
 | 
						|
		      password        =>  "",
 | 
						|
		      prompt          =>  "bootroot:.*# ",
 | 
						|
		      halt            =>  "shutdown -h now"
 | 
						|
		      );
 | 
						|
 | 
						|
$uml->boot();
 | 
						|
# Make the GID/UID 0 FS
 | 
						|
$uml->command("$filesystem /dev/ubd/1");
 | 
						|
$uml->command("mount /dev/ubd/1 /mnt1");
 | 
						|
$uml->command("mount -t hostfs none -o $mount_point /mnt2");
 | 
						|
$uml->command("cp -a /mnt2/* /mnt1");
 | 
						|
if ( $preserve_permissions == 0 ) {
 | 
						|
    $uml->command("chown -R 0:0 /mnt1");
 | 
						|
}
 | 
						|
$uml->command("umount /mnt1; umount /mnt2");   
 | 
						|
$uml->halt();
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |