Ejemplo n.º 1
0
 def read_partitions(self, filename):
     """
     Reads the partitions information from the given file.
     
     :param filename: Path to the file with the partitions information.  
     """
     
     self._partitions[:] = []
     self._partitions = read_nand_partitions(filename)
Ejemplo n.º 2
0
    def read_partitions(self, filename):
        """
        Reads the partitions information from the given file.
        
        :param filename: Path to the file with the partitions information.  
        """

        self._partitions[:] = []
        self._partitions = read_nand_partitions(filename)
Ejemplo n.º 3
0
    def read_partitions(self, filename):
        """
        Reads the partitions information from the given file.
        
        :param filename: Path to the file with the partitions information.
        :returns: Returns true on success; false otherwise.  
        """

        self._partitions[:] = []
        self._partitions = read_nand_partitions(filename)
Ejemplo n.º 4
0
 def read_partitions(self, filename):
     """
     Reads the partitions information from the given file.
     
     :param filename: Path to the file with the partitions information.
     :returns: Returns true on success; false otherwise.  
     """
     
     self._partitions[:] = []
     self._partitions = read_nand_partitions(filename)