Import a slightly modified Bayou version into svn. This is based
authorUwe Hermann <uwe@hermann-uwe.de>
Sun, 2 Nov 2008 17:01:06 +0000 (17:01 +0000)
committerUwe Hermann <uwe@hermann-uwe.de>
Sun, 2 Nov 2008 17:01:06 +0000 (17:01 +0000)
commit7eb845e815924984b301aaf674b090cde28c1c6a
treed85a1080fd20b0ad8e1859d012fe90ba9cdf1cd9
parent91df5619dbb7d2064f9947f2fbc56477f7b707c3
Import a slightly modified Bayou version into svn. This is based
on the last snapshot posted by Jordan Crouse. This commit is long
overdue.

Changes by me include:

 - Rename 'utils' to 'util' for consistency with our other projects.

 - Move the main code out of src/* into the top-level directory.

 - Add missing license headers to the following files:
   Makefile, pbuilder/liblar/Makefile, util/pbuilder/Makefile.

 - Dropped the util/pbuilder/lzma completely. I'm working on reusing
   the lzma/ dir from v3 via svn:externals. Alas, this also means
   that Bayou won't yet compile out of the box.

 - Coding-style and white-space fixes (indent) for all files.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3719 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
25 files changed:
payloads/bayou/Makefile [new file with mode: 0644]
payloads/bayou/bayou.h [new file with mode: 0644]
payloads/bayou/bayou.ldscript [new file with mode: 0644]
payloads/bayou/config.c [new file with mode: 0644]
payloads/bayou/lzma.c [new file with mode: 0644]
payloads/bayou/lzmadecode.c [new file with mode: 0644]
payloads/bayou/lzmadecode.h [new file with mode: 0644]
payloads/bayou/main.c [new file with mode: 0644]
payloads/bayou/menu.c [new file with mode: 0644]
payloads/bayou/nrv2b.c [new file with mode: 0644]
payloads/bayou/payload.c [new file with mode: 0644]
payloads/bayou/self.c [new file with mode: 0644]
payloads/bayou/self.h [new file with mode: 0644]
payloads/bayou/util/pbuilder/Makefile [new file with mode: 0644]
payloads/bayou/util/pbuilder/config.c [new file with mode: 0644]
payloads/bayou/util/pbuilder/create.c [new file with mode: 0644]
payloads/bayou/util/pbuilder/liblar/Makefile [new file with mode: 0644]
payloads/bayou/util/pbuilder/liblar/lar.h [new file with mode: 0644]
payloads/bayou/util/pbuilder/liblar/lib.c [new file with mode: 0644]
payloads/bayou/util/pbuilder/liblar/liblar.h [new file with mode: 0644]
payloads/bayou/util/pbuilder/liblar/self.c [new file with mode: 0644]
payloads/bayou/util/pbuilder/liblar/self.h [new file with mode: 0644]
payloads/bayou/util/pbuilder/main.c [new file with mode: 0644]
payloads/bayou/util/pbuilder/pbuilder.h [new file with mode: 0644]
payloads/bayou/util/pbuilder/show.c [new file with mode: 0644]