[U-Boot] [PATCH 1/2] lib: uuid: add function to generate UUID version 4

2014-02-28 Thread Przemyslaw Marczak
lib/uuid.c: Add get_uuid_str() - this function returns 36 character hexadecimal ASCII string representation of a 128-bit (16 octets) UUID (Universally Unique Identifier) version 4 based on RFC4122, which is randomly generated. Source: https://www.ietf.org/rfc/rfc4122.txt Changes: Move functions:

Re: [U-Boot] [PATCH 1/2] lib: uuid: add function to generate UUID version 4

2014-02-28 Thread Stephen Warren
On 02/28/2014 08:18 AM, Przemyslaw Marczak wrote: > lib/uuid.c: > Add get_uuid_str() - this function returns 36 character hexadecimal ASCII > string representation of a 128-bit (16 octets) UUID (Universally Unique > Identifier) version 4 based on RFC4122, which is randomly generated. > > Source: h

Re: [U-Boot] [PATCH 1/2] lib: uuid: add function to generate UUID version 4

2014-03-03 Thread Przemyslaw Marczak
Hello Stephen, Thank you for review. On 02/28/2014 05:55 PM, Stephen Warren wrote: On 02/28/2014 08:18 AM, Przemyslaw Marczak wrote: lib/uuid.c: Add get_uuid_str() - this function returns 36 character hexadecimal ASCII string representation of a 128-bit (16 octets) UUID (Universally Unique Iden

Re: [U-Boot] [PATCH 1/2] lib: uuid: add function to generate UUID version 4

2014-03-03 Thread Stephen Warren
On 03/03/2014 06:44 AM, Przemyslaw Marczak wrote: > Hello Stephen, > Thank you for review. > > On 02/28/2014 05:55 PM, Stephen Warren wrote: >> On 02/28/2014 08:18 AM, Przemyslaw Marczak wrote: >>> lib/uuid.c: >>> Add get_uuid_str() - this function returns 36 character hexadecimal >>> ASCII >>> st