mirror of
https://github.com/fspc/gbootroot.git
synced 2025-02-23 17:13:22 -05:00
Fixed a little bug where initrd= wasn't being passed. Everythings looks good
with the default Initrd.gz.
This commit is contained in:
parent
b2a5247689
commit
bf4200e3c5
@ -53,6 +53,9 @@ my $uml_xterm = "xterm -e";
|
|||||||
# and to update scripts/Debian.yard if
|
# and to update scripts/Debian.yard if
|
||||||
# make_debian has been changed,
|
# make_debian has been changed,
|
||||||
# and to install -s linux.
|
# and to install -s linux.
|
||||||
|
# and to make sure modules are correct in Initrd.gz
|
||||||
|
# apply special patches
|
||||||
|
|
||||||
my $version = "1.3.5";
|
my $version = "1.3.5";
|
||||||
my $date = "02.13.2002";
|
my $date = "02.13.2002";
|
||||||
my $gtk_perl_version = "0.7002";
|
my $gtk_perl_version = "0.7002";
|
||||||
@ -60,6 +63,7 @@ my $pwd = `pwd`; chomp $pwd;
|
|||||||
my $home_rootfs = "$home/root_filesystem/";
|
my $home_rootfs = "$home/root_filesystem/";
|
||||||
my $home_uml_kernel = "$home/uml_kernel/";
|
my $home_uml_kernel = "$home/uml_kernel/";
|
||||||
my $modules_directory = "/lib/modules";
|
my $modules_directory = "/lib/modules";
|
||||||
|
my $Initrd = "/usr/lib/bootroot/root_filesystem/Initrd.gz";
|
||||||
|
|
||||||
# This is for experimental stuff .. basically so I can test
|
# This is for experimental stuff .. basically so I can test
|
||||||
# the boot fs as a normal user, since it's hard to create a boot disk
|
# the boot fs as a normal user, since it's hard to create a boot disk
|
||||||
@ -1729,7 +1733,7 @@ sub uml_box {
|
|||||||
|
|
||||||
|
|
||||||
#_______________________________________
|
#_______________________________________
|
||||||
# Submit Button
|
# Submit Button
|
||||||
my $submit_b = button_advanced(0,1,7,8,"Submit",$table_uml);
|
my $submit_b = button_advanced(0,1,7,8,"Submit",$table_uml);
|
||||||
$tooltips->set_tip( $submit_b,
|
$tooltips->set_tip( $submit_b,
|
||||||
"Start uml kernel processes.",
|
"Start uml kernel processes.",
|
||||||
@ -1869,7 +1873,7 @@ sub uml_box {
|
|||||||
# Decide what to do with initrd
|
# Decide what to do with initrd
|
||||||
if ( !$initrd ) {
|
if ( !$initrd ) {
|
||||||
|
|
||||||
$initrd = "initrd=Initrd";
|
$initrd = "initrd=" . $Initrd;
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user