aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Bump vpd revision to origin/release-R63-10032.BAndrew Robbins2017-12-051-1/+1
| | | | | | | | | | "release-R63-10032.B" is a branch name in CrOS vpd's remote repository corresponding to the latest release.
| * Bump mosys revision to origin/release-R63-10032.BAndrew Robbins2017-12-051-1/+1
| | | | | | | | | | "release-R63-10032.B" is a branch name in CrOS mosys' remote repository corresponding to the latest release.
| * Bump hdctools revision to origin/release-R63-10032.BAndrew Robbins2017-12-051-1/+1
| | | | | | | | | | "release-R63-10032.B" is a branch name in CrOS hdctools' remote repository corresponding to the latest release.
| * Bump CrOS-EC revision to origin/release-R63-10032.BAndrew Robbins2017-12-052-2/+2
| | | | | | | | | | "release-R63-10032.B" is a branch name in CrOS-EC's remote repository corresponding to the latest release.
| * Bump flashrom-CrOS revision to origin/release-R63-10032.BAndrew Robbins2017-12-051-1/+1
| | | | | | | | | | "release-R63-10032.B" is a branch name in CrOS flashrom's remote repository corresponding to the latest release.
| * Bump Depthcharge revision to origin/release-R63-10032.BAndrew Robbins2017-12-051-1/+1
|/ | | | | "release-R63-10032.B" is a branch name in Depthcharge's remote repository corresponding to the latest release.
* Re-add minifree libreboot x200 to suppliers page (PR not needed)Leah Rowe2017-12-051-0/+1
| | | | | Pull request not needed for this entry, since it's an entry regarding my own company
* Merge branch 'hyperbola_encrypted' of libreboot/libreboot into masterSwift Geek2017-12-012-0/+4
|\
| * link to guide for encrypted hyperbola gnu+linux installLeah Rowe2017-12-012-0/+4
|/
* Merge branch 'bucts-uri' of kragle/libreboot into masterSwift Geek2017-12-011-1/+1
|\
| * 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.
* Merge branch 'master' of isengaara/libreboot into masterAndrew Robbins2017-11-301-0/+10
|\
| * add new supplier (Phreedom2600)Tobias Platen2017-11-291-0/+10
| |
* | Merge branch 'responsive' of edik/libreboot into masterLeah Rowe2017-11-296-22/+50
|\ \ | |/ |/|
| * Markup more code content with code and pre tagsEdgard Schmidt2017-11-254-20/+31
| |
| * Make code content and tables more responsiveEdgard Schmidt2017-11-252-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 'pre' blocks and tables use scrollbars if the viewport is too narrow * Code content which is not within a 'pre' element wraps automatically * Code content and 'pre' blocks have a gray background color The added background color has two purposes: * The left-margin for pre blocks is removed, because it consumes too much space on narrow viewports. However by using a background color, the reader can still recognize 'pre' content as code blocks. * Code content which is *not* within a 'pre' element wraps automatically now. The background color allows the reader to recognize the "connection" between automatically splitted lines of a single code element. This way, nobody will mistake a one-liner for a multi-liner.
| * Allow line breaks for bare URI linksEdgard Schmidt2017-11-251-0/+5
| |
| * Limit image size to viewport's widthEdgard Schmidt2017-11-251-0/+4
|/
* Merge branch 'master' of consts/libreboot into masterLeah Rowe2017-11-201-0/+3
|\
| * Core Quad update info about compatible CPUs for T500konstantin.grudnev2017-11-201-0/+3
| |
* | Merge branch 'buc.fix' of swiftgeek/libreboot into masterAndrew Robbins2017-11-141-1/+3
|\ \
| * | Clarification on BUC.TSSwift Geek2017-11-131-1/+3
| | | | | | | | | | | | Missing trivia that can cause a brick
* | | Merge branch 'master' of koddos/libreboot into masterLeah Rowe2017-11-021-0/+4
|\ \ \
| * | | Add KoDDoS.net MirrorKoDDoS Mirror2017-11-021-0/+4
|/ / /
* | | Merge branch 'master' of lenzj/libreboot into masterLeah Rowe2017-11-021-1/+1
|\ \ \
| * | | Update link to web page on intel me research.Jason Lenz2017-10-291-1/+1
|/ / /
* | | Merge branch 'readability-changes' of kragle/libreboot into masterSwift Geek2017-10-2933-469/+469
|\ \ \
| * | | Remove unnecessary spaces in command substitutionsAndrew Robbins2017-10-2825-196/+196
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is likely one of the very last changes necessary to make the Libreboot build system more cohesive in appearance. Hopefully from this point forward it won't be as readily apparent as to who wrote which parts of the build system (i.e. won't look like a patchwork quilt any longer).
| * | | Make use of Bash's '-n' operator for testsAndrew Robbins2017-10-285-45/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As an example, do this: [[ -n $revision ]] instead of this: ! [[ -z $revision ]] Makes the code easier to read.
| * | | Replace usage of the '[' Bash builtin with '[['Andrew Robbins2017-10-2810-126/+126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There's no benefit to using the POSIX-style '[' test builtin considering its '-a' and '-o' operators are unused in the Libreboot build system. Plus, '[[' is safer with respect to any containing file redirections (for example). Prior, both '[' and '[[' were used throughout the codebase--a disparity in usage which this change aims to eliminate.
| * | | Replace '.' usage with Bash 'source' builtinAndrew Robbins2017-10-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The source builtin provided by Bash is easier to read than '.' (a lone period). Conforming to POSIX wasn't and isn't a goal of the Libreboot build system and as such it's fine to deviate from the standard where it makes sense, such as now.
| * | | Modify fd copying in printf calls for readabilityAndrew Robbins2017-10-2813-146/+146
|/ / /
* | | Merge branch 'master' of consts/libreboot into masterSwift Geek2017-10-192-4/+4
|\ \ \ | | |/ | |/|
| * | Core Quad possibility of working on T400/T500grudnevkv2017-10-192-4/+4
|/ / | | | | | | Added some info about WIP
* | Merge branch 'master' of sonne/libreboot into masterLeah Rowe2017-10-172-2/+2
|\ \
| * | Change flashrom revision to include 'v' in the tagAlessandro Grassi2017-10-152-2/+2
|/ / | | | | | | Signed-off-by: Alessandro Grassi <alessandro@aggro.it>
* | fix up bullet point lists const was making in previous commitsLeah Rowe2017-10-132-4/+6
| |
* | Merge branch 'master' of consts/libreboot into masterLeah Rowe2017-10-132-8/+8
|\ \
| * | Core Quad possibility of working on T400/T500konstantin.grudnev2017-10-132-8/+8
| | | | | | | | | | | | Fixed typos and markup
* | | Merge branch 'master' of consts/libreboot into masterLeah Rowe2017-10-132-3/+9
|\| |
| * | Core Quad possibility of working on T400/T500konstantin.grudnev2017-10-132-3/+9
| | |
* | | Merge branch 'master' of consts/libreboot into masterLeah Rowe2017-10-132-2/+2
|\| |
| * | Added info about Core2Duo T9900 to be supported (T400,T500)konstantin.grudnev2017-10-132-2/+2
| | |
* | | Merge branch 'funcall-replace' of kragle/libreboot into masterSwift Geek2017-10-113-6/+2
|\ \ \
| * | | Build only CrOS-EC firmware in cros-ec build actionAndrew Robbins2017-10-101-2/+0
| | | | | | | | | | | | | | | | | | | | Helps keep projects modular and easier to maintain if each project only builds itself.
| * | | Build only mosys in mosys build actionAndrew Robbins2017-10-101-2/+0
| | | | | | | | | | | | | | | | | | | | Helps keep projects modular and easier to maintain if each project only builds itself.
| * | | Correct erroneous project_action() usageAndrew Robbins2017-10-103-4/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | 'project_action' does not carry out the given action for a project, contrary to that which the naming may seem to imply. Replacing the usage of the aforementioned with 'project_action_arguments' provides the intended behavior.
* | | Merge branch 'swiftfixesdocs' of swiftgeek/libreboot into masterLeah Rowe2017-10-051-25/+35
|\ \ \
| * | | Fix parabola instructionsSwift Geek2017-10-051-25/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | • match grub.cfg of current release and naming scheme of this guide (rootvol) • add stub section about generating grub.cfg • make section about ODD issues generic (happens to every device with native sata) • formatting fixes/workarounds
* | | | Merge branch 'master' of csh/libreboot into masterSwift Geek2017-10-0510-47/+52
|\ \ \ \