Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
contrib/ | H | 25-Apr-2025 | - | 281 | 218 | |
images/ | H | 25-Apr-2025 | - | |||
src/ | H | 25-Apr-2025 | - | 2,662 | 2,395 | |
README.md | H A D | 25-Apr-2025 | 1.7 KiB | 67 | 56 | |
meson.build | H A D | 25-Apr-2025 | 237 | 13 | 10 | |
meson_options.txt | H A D | 25-Apr-2025 | 234 | 13 | 10 |
README.md
1# coreboot-configurator  2 3A simple GUI to change settings in coreboot's CBFS, via the nvramtool utility. 4 5 6# How to install 7## Ubuntu, Linux Mint, elementary OS, Zorin OS and other derivates 8##### Install 9``` 10sudo add-apt-repository ppa:starlabs/coreboot 11sudo apt update 12sudo apt install coreboot-configurator 13``` 14##### Uninstall 15``` 16sudo apt purge coreboot-configurator 17``` 18 19## Debian 11 / MX Linux 19 20##### Install 21``` 22cd /tmp 23wget https://github.com/StarLabsLtd/packages/raw/main/Debian/11/coreboot-configurator_9%2Bf_all.deb \ 24 https://github.com/StarLabsLtd/packages/raw/main/Debian/11/nvramtool_1_all.deb 25sudo dpkg -i *.deb 26sudo apt -f install 27``` 28 29##### Uninstall 30``` 31sudo apt purge coreboot-configurator 32``` 33 34## Manjaro 35##### Install 36``` 37sudo pamac install coreboot-configurator 38``` 39##### Uninstall 40``` 41sudo pamac remove coreboot-configurator 42``` 43 44## Other Distributions 45##### Install 46``` 47git clone https://github.com/StarLabsLtd/coreboot-configurator.git 48cd coreboot-configurator 49meson build 50ninja -C build install 51``` 52##### Uninstall 53``` 54sudo ninja -C uninstall 55``` 56 57# Advanced Mode 58Enabling advanced mode will all you to see all settings contained inside coreboot. Tread carefully :) 59 60## Copying or Reusing 61Included scripts are free software licensed under the terms of the [GNU General Public License, version 2](https://www.gnu.org/licenses/gpl-2.0.txt). 62 63# [© Star Labs® / All Rights Reserved.](https://starlabs.systems) 64Any issues or questions, please contact us at [[email protected]](mailto:supportstarlabs.systems) 65 66View our full range of Linux laptops at: [https://starlabs.systems](https://starlabs.systems) 67