Browse Source

This comments out some code which broke the yard box when the default

/dev/fd0 wasn't available.  This check is unecessary, since it is handled in
other places.
master
freesource 23 years ago
parent
commit
6da033c5e6
  1. 10
      gbootroot

10
gbootroot

@ -1549,11 +1549,11 @@ sub Generate {
error_window("gBootRoot: ERROR: Root Device not defined");
return;
}
# devfs may change this
if (!-b $root_device) {
error_window("gBootRoot: ERROR: Not a valid Block Device");
return;
}
# devfs may change this .. it did, this is silly.
## if (!-b $root_device) {
## error_window("gBootRoot: ERROR: Not a valid Block Device");
## return;
## }
if (!$root_filename || $root_filename eq "") {
error_window("gBootRoot: ERROR: Root Filename not given");

Loading…
Cancel
Save