summaryrefslogtreecommitdiffstats
path: root/resources/utilities
Commit message (Collapse)AuthorAgeFilesLines
...
* grub-assemble: Disable verbose outputFrancis Rowe2015-03-011-1/+2
|
* bash scripts: Make script output more user-friendlyFrancis Rowe2015-02-203-4/+9
|
* bash scripts: Only enable verbose output if DEBUG= is usedFrancis Rowe2015-02-193-4/+7
|
* Move DEBLOB to resources/utilities/coreboot-libre/deblobFrancis Rowe2015-02-151-0/+306
|
* Delete GRUB Invaders from librebootFrancis Rowe2015-02-131-1/+0
|
* deletede i945-pwm .gitignoreFrancis Rowe2015-02-111-2/+0
| | | | Forgot to delete when deleting submodule.
* i945-pwm: add clean command to MakefileFrancis Rowe2015-02-111-0/+3
|
* i945-pwm: add -lz to MakefileFrancis Rowe2015-02-115-0/+843
| | | | Fixes build error reported by user.
* grub-assemble: Add link to original utility.Francis Rowe2015-02-071-0/+3
|
* buildrom-withgrub: Put background.jpg in CBFS, not GRUB memdiskFrancis Rowe2015-02-071-1/+0
| | | | | | | | | | The background.jpg was put in CBFS originally to save space inside CBFS because the GRUB payload is LZMA compressed by coreboot. The actual measured saving in space for background.jpg being in the memdisk was about 4KiB. Putting it in CBFS means that the user can easily change their background image if they want to.
* grub-assemble: merge scripts into a single script gen.shFrancis Rowe2015-02-073-57/+56
|
* ich9deblob/ich9gen: replace endianness checking functionFrancis Rowe2015-01-122-15/+7
|
* ich9deblob/ich9gen: checksum function: rename variableFrancis Rowe2015-01-102-3/+3
|
* ich9deblob/ich9gen: rename checksum functionFrancis Rowe2015-01-102-3/+3
| | | | It's actually working on a 4KiB buffer, not an 8KiB buffer.
* ich9deblob: remove useless variable in main functionFrancis Rowe2015-01-101-7/+5
|
* ich9deblob: do not change the MAC addressFrancis Rowe2015-01-101-15/+1
| | | | ich9gen can change the MAC address, so there's no need here.
* ich9deblob: re-factor main functionFrancis Rowe2015-01-101-120/+52
|
* ich9deblob/ich9gen: re-factor descriptor deblob functionFrancis Rowe2015-01-102-28/+25
|
* ich9deblob/ich9gen: re-factory gbe deblob functionFrancis Rowe2015-01-101-26/+13
|
* ich9deblob/ich9gen: re-factor descriptor/gbe file creationFrancis Rowe2015-01-101-10/+2
|
* ich9deblob/ich9gen: re-factor the gbe checksum functionFrancis Rowe2015-01-102-29/+8
|
* ich9deblob/ich9gen: get word function: make it actually readableFrancis Rowe2015-01-101-9/+9
|
* ich9deblob/ich9gen: word grab function (gbe): use clear namingFrancis Rowe2015-01-102-3/+3
|
* ich9deblob/ich9gen: checksum word grab: shift, not multiplyFrancis Rowe2015-01-101-1/+1
|
* ich9deblob/ich9gen: use portable data typesFrancis Rowe2015-01-1014-235/+244
| | | | For those integers that need to be a certain byte size.
* ich9delob: link to original utility in headerFrancis Rowe2015-01-051-0/+1
|
* ich9gen/ich9deblob: set default MAC addressFrancis Rowe2014-12-302-7/+17
|
* ich9deblob/ich9gen: change descriptor OEM string to LIBERATEFrancis Rowe2014-12-292-9/+26
|
* ich9deblob/ich9gen: Host/CPU read/write access to all regions.Francis Rowe2014-12-293-47/+81
| | | | | The ME is also disabled from reading/writing any regions (though the ME is already removed in libreboot).
* ich9gen: hard-coded flash regions shown, but commentedFrancis Rowe2014-12-292-6/+12
|
* ich9gen: show original flReg1.LIMIT, but commented outFrancis Rowe2014-12-292-0/+2
|
* ich9gen: fix ARM. Initialize customMacAddressFrancis Rowe2014-12-291-0/+2
| | | | | Fixes bug where custom MAC address would always be wrong. Tested on a BBB.
* ich9gen: fix typoFrancis Rowe2014-12-281-2/+4
|
* ich9gen: when changing Gbe mac address, spit out new mkgbe.cFrancis Rowe2014-12-282-3/+13
|
* ich9gen: make it possible for user to change the Gbe MAC addressFrancis Rowe2014-12-281-1/+53
| | | | Example: ./ich9gen --macaddress AA:BB:CC:DD:EE:FF
* ich9gen: updated some commentsFrancis Rowe2014-12-282-26/+26
|
* ich9deblob: remove useless comment from descriptor deblob functionFrancis Rowe2014-12-281-4/+0
|
* ich9deblob: re-factored the descriptor deblob functionFrancis Rowe2014-12-283-53/+53
|
* ich9deblob: make clean was not deleting ich9gen binary. fix that.Francis Rowe2014-12-281-1/+3
|
* ich9deblob: added ich9gen utilityFrancis Rowe2014-12-2814-54/+1514
| | | | | This can generate the descriptor+gbe images from scratch, without the need for a factory.bin dump.
* ich9deblob: gbe.h: rename reservedWord05h imageVersionInformationFrancis Rowe2014-12-261-1/+1
|
* ich9deblob: fill padding in Gbe with 0xFFFrancis Rowe2014-12-262-2/+21
| | | | | | Words 40h to 53h had unknown data that could not be fonud in the datasheets. Setting them to 0xFFFF doesn't seem to cause any issues for users.
* ich9deblob: gbe struct: words 30-3E (PXE Software Region)Francis Rowe2014-12-261-2/+92
|
* ich9deblob: link to datasheet in descriptor/descriptor.hFrancis Rowe2014-12-261-0/+7
|
* ich9deblob: links to datasheet in gbe/gbe.hFrancis Rowe2014-12-261-0/+8
|
* ich9deblob: gbe struct: info about reserved words 24 to 2FFrancis Rowe2014-12-261-1/+1
|
* ich9deblob: gbe struct: info about word 21 (82567V Device ID)Francis Rowe2014-12-261-1/+1
|
* ich9deblob: gbe struct: info about reserved words 20,22,23Francis Rowe2014-12-261-3/+3
|
* ich9deblob: gbe struct: info about word 1F (82567LF Device ID)Francis Rowe2014-12-261-1/+1
|
* ich9deblob: gbe struct: info about word 1E (82567LM Device ID)Francis Rowe2014-12-261-1/+1
|