diff options
author | vbendeb <vbendeb@chromium.org> | 2010-06-14 15:41:27 -0700 |
---|---|---|
committer | vbendeb <vbendeb@chromium.org> | 2010-06-14 15:41:27 -0700 |
commit | 70e9509a2748c0ee8646d77f2a0e6fcbb1446505 (patch) | |
tree | 3557b5823bc2200dea45d399f72af51d7cde69f8 /README | |
parent | 83c88cfa6920711b8a7823e1e3fc0efe8b71a04c (diff) | |
download | vboot-70e9509a2748c0ee8646d77f2a0e6fcbb1446505.tar.gz |
Rework the vboot_reference make system.
After this change the generated files are placed in a
separate tree (such thet they don't show in the
`git status' output anymore) and the dependencies are
followed properly (if a .h file changes the
appropriate .o files and apps get rebuilt).
Tested as follows:
> $ make clean
> $ make # build succeeds
> $ git status # shows clean directory
> $ RUNTESTS=1 make # (captured test output matches that of the test run before any changes)
> $ touch ./vboot_firmware/include/tlcl.h
> $ make # make succeeds
> $ find build -type f -newer ./vboot_firmware/include/tlcl.h
build/vboot_firmware/lib/rollback_index.o
build/vboot_firmware/lib/rollback_index.o.d
build/vboot_firmware/a.out
build/vboot_fw.a
build/utility/vbutil_key
build/utility/kernel_utility.d
build/utility/vbutil_key.d
build/utility/verify_data
build/utility/load_kernel_test.d
build/utility/vbutil_keyblock.d
build/utility/vbutil_kernel
build/utility/vbutil_kernel.d
build/utility/firmware_utility
build/utility/signature_digest_utility.d
build/utility/kernel_utility
build/utility/verify_data.d
build/utility/vbutil_keyblock
build/utility/signature_digest_utility
build/utility/load_kernel_test
build/utility/firmware_utility.d
build/tests/vboot_common3_tests
build/tests/vboot_common2_tests
build/host/a.out
$ >
Review URL: http://codereview.chromium.org/2845001
Diffstat (limited to 'README')
-rw-r--r-- | README | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -27,6 +27,35 @@ tests/ - User-land tests and benchmarks that test the reference implementation. Please have a look at these if you'd like to understand how to use the reference implementation. +build/ - a directory where the generated files go to. + +-------------------- +Building and testing +-------------------- + +The suite can be built on the host or in the chroot environment. + +Building on the host could fail if certain packages are not installed. If +there are host environment build problems due to missing .h files, try +researching what packages the files belong to and install the missing packages +before reporting a problem. + +To build the software run + +make + +in the top level directory. The build output is placed in the ./build +directory. + +To run the tests either invoke + +RUNTESTS=1 make + +in the top level directory or + +cd tests +BUILD=../build make runtests + ---------- Some useful utilities: |