Exemple #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)
Exemple #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)
Exemple #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)
Exemple #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)