Browse Source

to /mnt in initrd_heredoc, step increment for spinner changed to 282

master
freesource 24 years ago
parent
commit
0d276c6e76
  1. 8
      gBootRoot

8
gBootRoot

@ -242,7 +242,7 @@ button("Device Selection",$entry4,"Device Selection",3,$true);
# Fifth row # Fifth row
hbox("what"); hbox("what");
my $adj = new Gtk::Adjustment( 1440.0, 0.0, 360000000.0, 360.0, 360.0, 0.0 ); my $adj = new Gtk::Adjustment( 1440.0, 0.0, 360000000.0, 282.0, 360.0, 0.0 );
my $spinner = new Gtk::SpinButton( $adj, 0, 0 ); my $spinner = new Gtk::SpinButton( $adj, 0, 0 );
$tooltips->set_tip( $spinner, "Choose the Device Size.", "" ); $tooltips->set_tip( $spinner, "Choose the Device Size.", "" );
$spinner->set_wrap( $true ); $spinner->set_wrap( $true );
@ -1272,14 +1272,14 @@ echo -n 'Please insert the root floppy, and press [Enter]: '
read ENTER read ENTER
echo Mounting floppy drive readonly ... echo Mounting floppy drive readonly ...
mount -o ro -t ext2 /dev/fd0 $mnt mount -o ro -t ext2 /dev/fd0 /mnt
echo -n Copying new root to ramdisk .. please wait ... echo -n Copying new root to ramdisk .. please wait ...
$compress -cd $mnt/$broot_image > /dev/ram1 $compress -cd /mnt/$broot_image > /dev/ram1
echo done. echo done.
echo -n Unmounting floppy ... echo -n Unmounting floppy ...
umount $mnt umount /mnt
echo done. echo done.
echo Changing to the new root. echo Changing to the new root.

Loading…
Cancel
Save