diff options
author | Przemyslaw Marczak <p.marczak@samsung.com> | 2014-04-02 10:20:02 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-04-02 15:44:40 -0400 |
commit | a96a0e6153e3d9071c1a4516bf3e94c4cd96c77c (patch) | |
tree | 31b51b7f6fc24fda1236a482527922ef0e975019 /lib/Makefile | |
parent | 3f62971162370213271dc1e7a396b6b3a6d5b6c6 (diff) | |
download | u-boot-imx-a96a0e6153e3d9071c1a4516bf3e94c4cd96c77c.zip u-boot-imx-a96a0e6153e3d9071c1a4516bf3e94c4cd96c77c.tar.gz u-boot-imx-a96a0e6153e3d9071c1a4516bf3e94c4cd96c77c.tar.bz2 |
part_efi: move uuid<->string conversion functions into lib/uuid.c
This commit introduces cleanup for uuid library.
Changes:
- move uuid<->string conversion functions into lib/uuid.c so they can be
used by code outside part_efi.c.
- rename uuid_string() to uuid_bin_to_str() for consistency with existing
uuid_str_to_bin()
- add an error return code to uuid_str_to_bin()
- update existing code to the new library functions.
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Cc: Stephen Warren <swarren@nvidia.com>
Cc: Lukasz Majewski <l.majewski@samsung.com>
Cc: trini@ti.com
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile index ae80865..d7ff7ca 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -61,6 +61,7 @@ obj-y += string.o obj-y += time.o obj-$(CONFIG_TRACE) += trace.o obj-$(CONFIG_BOOTP_PXE) += uuid.o +obj-$(CONFIG_PARTITION_UUIDS) += uuid.o obj-y += vsprintf.o obj-$(CONFIG_LIB_RAND) += rand.o |