Yu-Ping Wu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/39390 )
Change subject: cbfstool: Build vboot library ......................................................................
Patch Set 9:
(2 comments)
https://review.coreboot.org/c/coreboot/+/39390/7/.gitignore File .gitignore:
https://review.coreboot.org/c/coreboot/+/39390/7/.gitignore@55 PS7, Line 55: vboot_lib/
Where does the rest of the build output go when you just run 'make' in util/cbfstool? Looks like it […]
Compiling vboot lib results in *.o, *.o.d and *.a files, with only *.o ignored. Since the output binaries are in build/ when running 'make' and 'make -C util/futility', and we did't have *.a or *.o.d for cbfstool before, there's no problem. However, with the whole vboot lib built for cbfstool in this CL, there will be *.a and *.o.d under cbfstool/vboot_lib.
Now ignoring *.o.d and *.a instead.
https://review.coreboot.org/c/coreboot/+/39390/7/Makefile File Makefile:
https://review.coreboot.org/c/coreboot/+/39390/7/Makefile@45 PS7, Line 45: VBOOT_BUILD
Yes, I mean rename this everywhere it is used.
Ack