[openfirmware] [commit] r3658 - ofw/disklabel

repository service svn at openfirmware.info
Thu May 16 07:00:22 CEST 2013


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
 ;
 



More information about the openfirmware mailing list