| 7e3e2056 | 09-Sep-2017 | Rob Clark <robdclark@gmail.com> | examples: add fallback memcpy
 Solves build issue:
 
 Building current source for 134 boards (12 threads, 1 job per thread)
 arm:  +   lsxhl
 +examples/api/vsprintf.o: In function `string16'
 examples: add fallback memcpy
 Solves build issue:
 
 Building current source for 134 boards (12 threads, 1 job per thread)
 arm:  +   lsxhl
 +examples/api/vsprintf.o: In function `string16':
 +lib/vsprintf.c:278: undefined reference to `memcpy'
 +examples/api/uuid.o: In function `uuid_bin_to_str':
 +lib/uuid.c:197: undefined reference to `memcpy'
 +lib/uuid.c:199: undefined reference to `memcpy'
 +make[3]: *** [examples/api/demo] Error 1
 +make[2]: *** [examples/api] Error 2
 +make[1]: *** [examples] Error 2
 +make: *** [sub-make] Error 2
 133    0    1 /134    sheevaplug
 
 Signed-off-by: Rob Clark <robdclark@gmail.com>
 show more ...  | 
| 22ada0c8 | 09-Sep-2017 | Rob Clark <robdclark@gmail.com> | vsprintf.c: add GUID printing
 This works (roughly) the same way as linux's, but we currently always
 print lower-case (ie. we just keep %pUB and %pUL for compat with linux),
 mostly just because that
 vsprintf.c: add GUID printing
 This works (roughly) the same way as linux's, but we currently always
 print lower-case (ie. we just keep %pUB and %pUL for compat with linux),
 mostly just because that is what uuid_bin_to_str() supports.
 
 %pUb:   01020304-0506-0708-090a-0b0c0d0e0f10
 %pUl:   04030201-0605-0807-090a-0b0c0d0e0f10
 
 It will be used by a later efi_loader paths for efi variables and for
 device-path-to-text protocol, and also quite useful for debug prints
 of protocol GUIDs.
 
 Signed-off-by: Rob Clark <robdclark@gmail.com>
 Tested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
 Reviewed-by: Simon Glass <sjg@chromium.org>
 show more ...  | 
| 8a7e7d56 | 17-Nov-2013 | Masahiro Yamada <yamada.m@jp.panasonic.com> | Makefile: descend into subdirectories only when CONFIG_API is defined
 All objects under api/ and examples/api/ directories are selected
 by CONFIG_API.
 So we can move CONFIG_API switch to the top Mak
 Makefile: descend into subdirectories only when CONFIG_API is defined
 All objects under api/ and examples/api/ directories are selected
 by CONFIG_API.
 So we can move CONFIG_API switch to the top Makefile.
 
 In order to use CONFIG_API, the definition of SUBDIR_EXAMPLES-y
 must be moved after "sinlude $(obj)include/autoconf.mk".
 
 Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
 show more ...  |