summaryrefslogtreecommitdiffstats
path: root/resources/scripts
Commit message (Collapse)AuthorAgeFilesLines
* Coreboot, vboot and depthcharge updates to Coreboot 4.3 for CrOS devicesPaul Kocialkowski2016-04-191-4/+7
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* ressources: Fix indentation on build/roms/withdepthchargePaul Kocialkowski2016-04-191-103/+109
| | | | Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
* build/release/src: don't delete patches for corebootFrancis Rowe2016-04-111-2/+0
| | | | | | | The old model was to have 1 coreboot directory with 1 revision, with all patches for all boards, so this behaviour used to be correct. Now it is wrong, because different coreboot revisions are used in different directories, and the build process does git-init and applies those patches. So we need them.
* build/module/crossgcc: build for all architecturesFrancis Rowe2016-03-281-8/+1
|
* helpers/build/crossgcc: Honor NPROC environment variableTimothy Pearson2016-03-201-3/+15
|
* build/roms/seabios: support both text-mode and vesafb modeFrancis Rowe2016-03-151-2/+14
|
* build/roms/seabios: copy coreboot config, NOT THE SEABIOS CONFIG, for buildingFrancis Rowe2016-03-151-1/+1
| | | | Yeah.
* Update crossgccFrancis Rowe2016-03-141-1/+1
|
* Add SeaBIOS payload to librebootFrancis Rowe2016-03-1411-0/+597
|
* dependencies/trisquel7: add libusb for building flashromFrancis Rowe2016-03-111-1/+1
|
* Update flashrom to revision 99b2468c9eaa97f7209ee919aa254ba536fd84c2Francis Rowe2016-03-111-6/+6
|
* Update to GRUB 7f2a856faec951b7ab816880bd26e1e10b17a596Francis Rowe2016-03-111-1/+1
|
* Remove ThinkPad R500 support (wasn't ready for production use yet anyway)Francis Rowe2016-03-102-24/+4
| | | | | | R500 support in its current state should not be merged in the master branch. This will likely not make it into the immediate upcoming release. This patch will be reverted in a separate experimental branch, for the time being.
* build/dependencies: Check architecture only onceKlemens Nanni2016-03-102-26/+21
|
* build system: allow arbitrary specification of number of cores usedFrancis Rowe2016-03-105-12/+67
| | | | | | | Use NPROC=foo Replace "foo" with a number. By default, the build system uses $(nproc). This patch allows the user to specify any number of cores. This is useful on some systems, or certain chroot environments.
* build/grub: Change wording, use a subshellKlemens Nanni2016-03-101-7/+9
|
* build scripts: use $(nproc) not "$(nproc)" for make -j optionFrancis Rowe2016-03-104-11/+11
|
* build/config/*: Update to work with new build systemFrancis Rowe2016-03-086-22/+110
|
* build/roms/withdepthcharge: fix build issue (wrong working directory)Francis Rowe2016-03-071-2/+5
|
* download/crossgcc: Don't delete coreboot filesFrancis Rowe2016-03-073-12/+8
| | | | Turns out there are needed parts.
* build/module/crossgcc: Don't automatically clean crossgcc when buildingFrancis Rowe2016-03-071-2/+0
| | | | Remember. One task. Do it well.
* build/module/crossgcc: Allow user to specify what architectures they wantFrancis Rowe2016-03-071-4/+10
| | | | | By default, libreboot will built for all relevant architectures, but this patch allows the user to skip some if they want to.
* Download, compile and clean crossgcc separately to corebootFrancis Rowe2016-03-076-37/+117
| | | | | | | | This means that coreboot can be re-downloaded and re-built without affecting crossgcc. The crossgcc directory also now only contains crossgcc; previously, it contained the entire coreboot source code too, which was unneeded because that directory was just for crossgcc, where the real coreboot directories symlink to it during the build process.
* download/coreboot: Add backup repository for corebootFrancis Rowe2016-03-071-1/+1
| | | | | Download from the backup repository, if the main repository is unavailable. Coreboot.org is sometimes offline, so it's nice to have a backup.
* download/coreboot: Fix error that caused .git not to be deleted in crossgccFrancis Rowe2016-03-071-1/+1
| | | | | | | For the crossgcc archive, we were deleting *.git, but this is wrong. It meant that yes, we were deleting the .git directory, but not the .gitmodules file, which meant that 3rdparty repositories were being cloned when re-adding our own deblobbed .git directory. This patch fixes that freedom bug.
* download/grub: use http:// if git:// failsFrancis Rowe2016-03-071-1/+1
| | | | | | At the time, Savannah had an issue cloning from git:// for GRUB. They probably fixed this already, but http:// worked alternatively. So add a catch that makes it download from http:// if git:// fails
* download/coreboot: Add missing trailing slash to directory pathFrancis Rowe2016-03-071-1/+1
|
* download/coreboot: fix build issue (unknown command)Francis Rowe2016-03-071-1/+1
|
* copy coreboot directory per revision, not per boardFrancis Rowe2016-03-076-127/+265
| | | | | This will speed up the build process. The plan is to, if possible, always use 1 revision.
* Revert "Revert "Revert "iunfinished patch: copy coreboot per revision, not ↵Francis Rowe2016-03-033-161/+107
| | | | | | | | | board""" When you have to revert a revert of a revert in the same 20 minute window then you my friend are an idiot. And that's exactly what I am. This reverts commit d105b4a8b74645d5936cf8a51b1517f3ba89fd26.
* Revert "Revert "iunfinished patch: copy coreboot per revision, not board""Francis Rowe2016-03-033-107/+161
| | | | This reverts commit 2f3d87aec85f5759180380cbc156472378164d11.
* Revert "iunfinished patch: copy coreboot per revision, not board"Francis Rowe2016-03-033-161/+107
| | | | | | | I'm an idiot. This patch wasn't supposed to be pushed yet because not finished. Reverting it for the time being. This reverts commit 89cc8c38c1cf3865c3684e5bd6658eedf0e61cfd.
* iunfinished patch: copy coreboot per revision, not boardFrancis Rowe2016-02-293-107/+161
|
* use only 1 crossgcc revision in librebootFrancis Rowe2016-02-273-66/+46
|
* download/coreboot: reset to common revisionFrancis Rowe2016-02-271-0/+5
|
* typofixFrancis Rowe2016-02-201-1/+1
|
* Update to latest GRUBFrancis Rowe2016-02-201-5/+1
| | | | secfix directory removed (patches merged upstream)
* New board: Intel D510MOFrancis Rowe2016-01-301-2/+2
|
* New board: ASUS KCMA-D8 desktop/workstation motherboardFrancis Rowe2016-01-301-2/+2
|
* download/coreboot: use HTTPS (works reliably now, but didn't before)Francis Rowe2016-01-191-1/+1
|
* download/coreboot: fix unsafe rm -RfFrancis Rowe2016-01-051-1/+1
|
* build/roms/withgrub: don't build vesafb images for ga-g41m-es2lFrancis Rowe2016-01-041-2/+2
| | | | Only text mode works on this board.
* Use different coreboot revisions and patches per boardFrancis Rowe2016-01-0413-289/+372
| | | | | | | | | | | | | | | | | | The release archives will be bigger, but this is a necessary change that makes libreboot development easier. At present, there are boards maintained in libreboot by different people. By doing it this way, that becomes much easier. This is in contrast to the present situation, where a change to one board potentially affects all other boards, especially when updating to a new version of coreboot. Coreboot-libre scripts, download scripts, build scripts - everything. The entire build system has been modified to reflect this change of development. For reasons of consistency, cbfstool and nvramtool are no longer included in the util archives.
* build/roms/withgrub: only dd the .rom filesFrancis Rowe2016-01-021-1/+1
|
* download/coreboot: note about new patch in upstream (2)Francis Rowe2015-12-311-0/+2
|
* download/coreboot: note about new patch in upstreamFrancis Rowe2015-12-311-0/+2
|
* download/flashrom: fix typo: it's git, not subversionFrancis Rowe2015-12-221-1/+1
|
* GRUB: fix security issue with password auth (integer underflow)Francis Rowe2015-12-151-0/+4
|
* build/roms/*: remove coreinfo-related instructionsFrancis Rowe2015-12-131-6/+0
|
* delete coreinfoFrancis Rowe2015-12-132-74/+0
|