Displaying 5 results from an estimated 5 matches for "ccf5cba".
2016 Feb 05
3
[PATCH] inspect: get windows drive letters for GPT disks.
...partions this blob
contains a "DMIO:ID:" prefix followed by a 16 byte binary GUID.
---
src/inspect-fs-windows.c | 98 +++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 96 insertions(+), 2 deletions(-)
diff --git a/src/inspect-fs-windows.c b/src/inspect-fs-windows.c
index ccf5cba..6571d37 100644
--- a/src/inspect-fs-windows.c
+++ b/src/inspect-fs-windows.c
@@ -25,6 +25,7 @@
#include <string.h>
#include <errno.h>
#include <iconv.h>
+#include <inttypes.h>
#ifdef HAVE_ENDIAN_H
#include <endian.h>
@@ -57,6 +58,8 @@ static int check_windows_a...
2016 Feb 05
2
[PATCHv2] inspect: get windows drive letters for GPT disks.
.../dev/vda1 as it comes from list_partitions
* to /dev/sda1 in inspect_get_drive_mappings
src/inspect-fs-windows.c | 104 ++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 102 insertions(+), 2 deletions(-)
diff --git a/src/inspect-fs-windows.c b/src/inspect-fs-windows.c
index ccf5cba..1698e81 100644
--- a/src/inspect-fs-windows.c
+++ b/src/inspect-fs-windows.c
@@ -25,6 +25,7 @@
#include <string.h>
#include <errno.h>
#include <iconv.h>
+#include <inttypes.h>
#ifdef HAVE_ENDIAN_H
#include <endian.h>
@@ -57,6 +58,8 @@ static int check_windows_a...
2016 Feb 05
0
Re: [PATCH] inspect: get windows drive letters for GPT disks.
...| 98 +++++++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 96 insertions(+), 2 deletions(-)
Attached is a patch with some stylistic updates. Please combine it
with your patch. More comments below.
> diff --git a/src/inspect-fs-windows.c b/src/inspect-fs-windows.c
> index ccf5cba..6571d37 100644
> --- a/src/inspect-fs-windows.c
> +++ b/src/inspect-fs-windows.c
> @@ -25,6 +25,7 @@
> #include <string.h>
> #include <errno.h>
> #include <iconv.h>
> +#include <inttypes.h>
>
> #ifdef HAVE_ENDIAN_H
> #include <endian....
2016 Feb 06
1
[PATCH v3] inspect: get windows drive letters for GPT disks.
...owed by a 16 byte binary GUID.
---
changes since v2:
* added code review changes as per rjones
src/inspect-fs-windows.c | 96 +++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 94 insertions(+), 2 deletions(-)
diff --git a/src/inspect-fs-windows.c b/src/inspect-fs-windows.c
index ccf5cba..ba72727 100644
--- a/src/inspect-fs-windows.c
+++ b/src/inspect-fs-windows.c
@@ -25,6 +25,7 @@
#include <string.h>
#include <errno.h>
#include <iconv.h>
+#include <inttypes.h>
#ifdef HAVE_ENDIAN_H
#include <endian.h>
@@ -57,6 +58,8 @@ static int check_windows_a...
2016 Feb 05
1
Re: [PATCH] inspect: get windows drive letters for GPT disks.
...++++++++++++++++++-
> > 1 file changed, 96 insertions(+), 2 deletions(-)
>
> Attached is a patch with some stylistic updates. Please combine it
> with your patch. More comments below.
>
> > diff --git a/src/inspect-fs-windows.c b/src/inspect-fs-windows.c
> > index ccf5cba..6571d37 100644
> > --- a/src/inspect-fs-windows.c
> > +++ b/src/inspect-fs-windows.c
> > @@ -25,6 +25,7 @@
> > #include <string.h>
> > #include <errno.h>
> > #include <iconv.h>
> > +#include <inttypes.h>
> >
> > #i...