aboutsummaryrefslogtreecommitdiff
path: root/projects/bucts
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary bucts targets fileAndrew Robbins2018-01-181-2/+0
| | | | | | | There's no difference between the 'generic' and 'lenovobios' bucts and simply wastes time compiling another bucts binary for no gain. If in the future such a distinction makes sense, the targets file can be re-added.
* Don't bother checking for git repo in bucts sourceAndrew Robbins2018-01-181-2/+2
| | | | | | | | | | | | | | | | | bucts' sources are kept in its project directory which means we can skip checking for a git repository and instead skip straight to creating the sources archive when releasing images/sources. i.e., project_release_sources_git() called git_project_check() with 'bucts' as an argument, wasting time and resources looking in $root/$SOURCES/bucts (which doesn't exist) and ultimately concluding that the assumed location of bucts' sources isn't a git repository (which is true). We can avoid that circumlocution by simply calling project_release_sources_archive_create() instead of project_release_sources_git() within the release() and release_check() actions.
* Revert "Statically link bucts"Sebastian 'Swift Geek' Grzywna2017-12-232-2/+2
| | | | | This reverts commit 5100c4e7e9cc5e06cf32e06a5a0bd0d79d7655c6. We do not have yet libc and other deps for bucts inside libreboot
* Remove bucts' download(), download_check() actionsAndrew Robbins2017-12-221-12/+0
| | | | | bucts is now merged in-tree, so the download() and download_check() actions are no longer necessary.
* Delete obsolete bucts patchesAndrew Robbins2017-12-222-37/+0
|
* Statically link buctsAndrew Robbins2017-12-222-2/+2
|
* Bring bucts source files into libreboot treeAndrew Robbins2017-12-222-0/+211
| | | | | | | Considering bucts is no longer maintained by Peter Stuge--its original author--and it being integral to Librebooting the X60/T60, it seems best for bucts to be merged into the main Libreboot repository.
* Correct revision used for buctsAndrew Robbins2017-12-051-1/+1
| | | | | The upstream repository from which bucts is pulled has changed, necessitating a different revision pointing to HEAD.
* Update bucts URI to point to Libreboot's mirrorAndrew Robbins2017-11-301-1/+1
| | | | | | stuge.se is, seemingly, down indefinitely which means users can no longer automatically clone bucts using the build scripts; by changing the repo URI to Libreboot's mirror this issue is resolved.
* Remove braces from parameter expansionsAndrew Robbins2017-09-211-34/+34
| | | | | | * projects/bucts/bucts ditto
* Patching now works. bucts can be patched & built.Andrew Robbins2017-05-316-0/+151
Modified the function git_project_patch_recursive (in libs/git) to enable patching with diff files, which uses the new function diff_patch_file located in libs/common. A generic action script for bucts is in projects/bucts/. Install/revision/target files are in projects/bucts/configs/. bucts' merge into the new build system should be nearly, if not already, complete.