Author: wmb Date: Sat Jun 18 00:42:53 2011 New Revision: 2293 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/2293
Log: Biosload version - default to nvram storage on floppy for virtualbox configuration.
Modified: cpu/x86/pc/biosload/devices.fth
Modified: cpu/x86/pc/biosload/devices.fth ============================================================================== --- cpu/x86/pc/biosload/devices.fth Fri Jun 17 09:52:21 2011 (r2292) +++ cpu/x86/pc/biosload/devices.fth Sat Jun 18 00:42:53 2011 (r2293) @@ -205,7 +205,11 @@ : fd-nv-file ( -- ) " a:\nvram.dat" ; : hd-nv-file ( -- ) " c:\nvram.dat" ; : usb-nv-file ( -- ) " u:\nvram.dat" ; -' usb-nv-file to nv-file +[ifdef] virtualbox-loaded + ' fd-nv-file to nv-file +[else] + ' usb-nv-file to nv-file +[then] device-end : reread-config-vars ( -- ) config-valid? if exit then
openfirmware@openfirmware.info