Lines Matching +full:non +full:- +full:persistent
1 # SPDX-License-Identifier: GPL-2.0
51 """Generate and store information about a persistent file containing
55 """Create or process the persistent file.
61 These files are always located in the "persistent data directory" of
65 u_boot_console: A console connection to U-Boot.
78 u_boot_console.log.action('Persistent data file ' + self.abs_fn +
83 ' (random, persistent, %d bytes)' % size)
160 u_boot_console: A console connection to U-Boot.
186 u_boot_console: A console connection to U-Boot.
188 retcode: Expected non-zero return code from the command.
205 """Find the running U-Boot's RAM location.
207 Probe the running U-Boot to determine the address of the first bank
215 u_boot_console: A console connection to U-Boot.
218 The address of U-Boot's first RAM bank, as an integer.
224 if ram_base == -1:
232 if '-> start' in l or 'memstart =' in l:
236 ram_base = -1
302 """Manage the timestamps and regeneration of a persistent generated
324 u_boot_console: A U-Boot console connection.
337 m = re.search('==> ([0-9a-fA-F]{8})$', output)