Displaying 4 results from an estimated 4 matches for "partition_t".
Did you mean:
  partition_1
  
2009 Mar 30
2
[PATCH 1/1] v2 Add Diagnostic MBR for trouble-shooting
...g_format_heads:
+	movw	$msg_heads, %di
+	movw	(heads), %dx
+	movb	$0x02, %cl		/* write two nibbles */
+	push	%cx				/* preserve for sectors */
+	call	write_hex_value
+
+msg_format_sectors:
+	movw	$msg_sectors, %di
+	movw	(sectors), %dx
+	popw	%cx				/* write two nibbles */
+	call	write_hex_value
+
+partition_table_scan:
+	movw $partition_table, %si
+	movw	$0x04, %cx		/* number of table entries */
+
+partition_entry_next:
+	testb	$flag_active, (%si)	/* is active (bootable) flag set? */
+	jnz		msg_partition_active
+
+	addw	$16, %si			/* next entry */
+	loopw	partition_entry_next
+
+	jmp		print_boot_message...
2009 Mar 30
0
[PATCH 1/1] Add Diagnostic MBR for trouble-shooting
...g_format_heads:
+	movw	$msg_heads, %di
+	movw	(heads), %dx
+	movb	$0x02, %cl		/* write two nibbles */
+	push	%cx				/* preserve for sectors */
+	call	write_hex_value
+
+msg_format_sectors:
+	movw	$msg_sectors, %di
+	movw	(sectors), %dx
+	popw	%cx				/* write two nibbles */
+	call	write_hex_value
+
+partition_table_scan:
+	movw $partition_table, %si
+	movw	$0x04, %cx		/* number of table entries */
+
+partition_entry_next:
+	testb	$flag_active, (%si)	/* is active (bootable) flag set? */
+	jnz		msg_partition_active
+
+	addw	$16, %si			/* next entry */
+	loopw	partition_entry_next
+
+	jmp		print_boot_message...
2009 Mar 30
2
[PATCH 1/1] v3: Add Diagnostic MBR for trouble-shooting BIOS boot-order problems.
...g_format_heads:
+	movw	$msg_heads, %di
+	movw	(heads), %dx
+	movb	$0x02, %cl		/* write two nibbles */
+	push	%cx				/* preserve for sectors */
+	call	write_hex_value
+
+msg_format_sectors:
+	movw	$msg_sectors, %di
+	movw	(sectors), %dx
+	popw	%cx				/* write two nibbles */
+	call	write_hex_value
+
+partition_table_scan:
+	movw $partition_table, %si
+	movw	$0x04, %cx		/* number of table entries */
+
+partition_entry_next:
+	testb	$flag_active, (%si)	/* is active (bootable) flag set? */
+	jnz		msg_partition_active
+
+	addw	$16, %si			/* next entry */
+	loopw	partition_entry_next
+
+	jmp		print_boot_message...
2013 Apr 19
8
[PATCH 0 of 8] blktap3/libvhd: Introduce VHD library.
This patch series introduces the VHD library. It is based on the blktap2 one,
with changes coming from the blktap2.5 one.
Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>