diff options
author | Che-Liang Chiou <clchiou@chromium.org> | 2010-11-05 11:40:49 +0800 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2011-08-24 10:00:08 -0700 |
commit | f0766d8872efdefc4b67d0a8cd31bd7d540b9124 (patch) | |
tree | eded590cea589484beb2e974a6c447198b3c4981 | |
parent | f5273560625a9c677cb2c56f5a3b76e38fc1b5d2 (diff) |
Move lib_generic/chromeos/ to lib/chromeos/
lib_generic/ is renamed to lib/ in newer version u-boot.
Change-Id: I07ed1eb650c83db1533ac24209b4129db7068c08
BUG=None
TEST=Run 'VBOOT_DEBUG=1 make all' successfully
Review URL: http://codereview.chromium.org/4410003
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | lib/chromeos/Makefile (renamed from lib_generic/chromeos/Makefile) | 0 | ||||
-rw-r--r-- | lib/chromeos/boot_device.c (renamed from lib_generic/chromeos/boot_device.c) | 0 | ||||
-rw-r--r-- | lib/chromeos/utility.c (renamed from lib_generic/chromeos/utility.c) | 2 |
4 files changed, 2 insertions, 2 deletions
@@ -214,7 +214,7 @@ LIBS = lib/libgeneric.o LIBS += lib/lzma/liblzma.o LIBS += lib/lzo/liblzo.o LIBS += lib/zlib/libz.o -LIBS += lib_generic/chromeos/libchromeos.a +LIBS += lib/chromeos/libchromeos.a LIBS += $(shell if [ -f board/$(VENDOR)/common/Makefile ]; then echo \ "board/$(VENDOR)/common/lib$(VENDOR).o"; fi) LIBS += $(CPUDIR)/lib$(CPU).o diff --git a/lib_generic/chromeos/Makefile b/lib/chromeos/Makefile index 8884f4ba133..8884f4ba133 100644 --- a/lib_generic/chromeos/Makefile +++ b/lib/chromeos/Makefile diff --git a/lib_generic/chromeos/boot_device.c b/lib/chromeos/boot_device.c index 5a57e6d8567..5a57e6d8567 100644 --- a/lib_generic/chromeos/boot_device.c +++ b/lib/chromeos/boot_device.c diff --git a/lib_generic/chromeos/utility.c b/lib/chromeos/utility.c index d90b8222962..0e289fd087a 100644 --- a/lib_generic/chromeos/utility.c +++ b/lib/chromeos/utility.c @@ -52,7 +52,7 @@ /* Import interface of vboot's helper functions */ #include <utility.h> -/* Is it defined in lib_generic/string.c? */ +/* Is it defined in lib/string.c? */ int memcmp(const void *cs, const void *ct, size_t count); void abort(void) |