Lines Matching +full:0 +full:x00001000

78     u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
79 output = u_boot_console.run_command('gpt read host 0')
84 output = u_boot_console.run_command('part list host 0')
85 assert '0x00000800 0x00000fff "part1"' in output
86 assert '0x00001000 0x00001bff "part2"' in output
94 u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
95 output = u_boot_console.run_command('gpt verify host 0')
104 u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
105 output = u_boot_console.run_command('gpt guid host 0')
116 u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
117 output = u_boot_console.run_command('gpt guid host 0 newguid')
129 u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
130 u_boot_console.run_command('gpt rename host 0 1 first')
131 output = u_boot_console.run_command('gpt read host 0')
133 u_boot_console.run_command('gpt rename host 0 2 second')
134 output = u_boot_console.run_command('gpt read host 0')
136 output = u_boot_console.run_command('part list host 0')
137 assert '0x00000800 0x00000fff "first"' in output
138 assert '0x00001000 0x00001bff "second"' in output
148 u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
149 output = u_boot_console.run_command('part list host 0')
150 assert '0x00000800 0x00000fff "first"' in output
151 assert '0x00001000 0x00001bff "second"' in output
152 u_boot_console.run_command('gpt swap host 0 first second')
153 output = u_boot_console.run_command('part list host 0')
154 assert '0x00000800 0x00000fff "second"' in output
155 assert '0x00001000 0x00001bff "first"' in output
164 u_boot_console.run_command('host bind 0 ' + state_disk_image.path)
165 output = u_boot_console.run_command('gpt write host 0 "name=all,size=0"')
167 output = u_boot_console.run_command('part list host 0')
168 assert '0x00000022 0x00001fde "all"' in output
169 …mand('gpt write host 0 "uuid_disk=375a56f7-d6c9-4e81-b5f0-09d41ca89efe;name=first,start=1M,size=1M…
171 output = u_boot_console.run_command('part list host 0')
172 assert '0x00000800 0x00000fff "first"' in output
173 assert '0x00001000 0x00001bff "second"' in output
174 output = u_boot_console.run_command('gpt guid host 0')