Author: quozl Date: Thu May 16 07:00:21 2013 New Revision: 3658 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/3658
Log: disklabel - abort open if the partition has a type for a filesystem that is not present in the build. Fixes failure to boot when an NTFS filesystem is present on an unsecured system. OLPC #12678.
Modified: ofw/disklabel/methods.fth
Modified: ofw/disklabel/methods.fth ============================================================================== --- ofw/disklabel/methods.fth Wed May 15 01:18:35 2013 (r3657) +++ ofw/disklabel/methods.fth Thu May 16 07:00:21 2013 (r3658) @@ -155,7 +155,7 @@ : select-file ( -- ) filename nip 0= if exit then
- choose-file-system find-package 0= if exit then ( phandle ) + choose-file-system find-package 0= if abort then ( phandle ) filename rot interpose ;
openfirmware@openfirmware.info