https://github.com/starlabsltd/coreboot-configurator
A simple GUI to change settings in coreboot's CBFS, via the nvramtool utility.
https://github.com/starlabsltd/coreboot-configurator
coreboot firmware settings
Last synced: 2 months ago
JSON representation
A simple GUI to change settings in coreboot's CBFS, via the nvramtool utility.
- Host: GitHub
- URL: https://github.com/starlabsltd/coreboot-configurator
- Owner: StarLabsLtd
- License: gpl-2.0
- Created: 2021-11-03T21:49:01.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-15T20:08:47.000Z (almost 3 years ago)
- Last Synced: 2025-10-22T06:37:40.816Z (6 months ago)
- Topics: coreboot, firmware, settings
- Language: C++
- Homepage:
- Size: 9.11 MB
- Stars: 93
- Watchers: 6
- Forks: 8
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# coreboot-configurator 
A simple GUI to change settings in coreboot's CBFS, via the nvramtool utility.

# How to install
## Ubuntu, Linux Mint, elementary OS, Zorin OS and other derivates
##### Install
```
sudo add-apt-repository ppa:starlabs/coreboot
sudo apt update
sudo apt install coreboot-configurator
```
##### Uninstall
```
sudo apt purge coreboot-configurator
```
## Debian 11 / MX Linux 19
##### Install
```
cd /tmp
wget https://github.com/StarLabsLtd/packages/raw/main/Debian/11/coreboot-configurator_10+f_all.deb \
https://github.com/StarLabsLtd/packages/raw/main/Debian/11/nvramtool_1_all.deb
sudo dpkg -i *.deb
sudo apt -f install
```
##### Uninstall
```
sudo apt purge coreboot-configurator nvramtool
```
## Manjaro
##### Install
```
sudo pamac install coreboot-configurator
```
##### Uninstall
```
sudo pamac remove coreboot-configurator
```
## Fedora
##### Install
```
sudo dnf copr enable starlabs/coreboot-configurator
sudo dnf install coreboot-configurator nvramtool
```
##### Uninstall
```
sudo dnf remove coreboot-configurator nvramtool
```
## Other Distributions
##### Dependencies
```
c++ compiler (gcc)
qt5
yaml-cpp
nvramtool
meson
```
##### Install
```
git clone https://github.com/StarLabsLtd/coreboot-configurator.git
cd coreboot-configurator
meson build
ninja -C build install
```
##### Uninstall
```
sudo ninja -C uninstall
```
# Advanced Mode
Enabling advanced mode will allow you to see all settings contained inside coreboot. Tread carefully :)
## Copying or Reusing
Included 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).
# [© Star Labs® / All Rights Reserved.](https://starlabs.systems)
Any issues or questions, please contact us at [support@starlabs.systems](mailto:supportstarlabs.systems)
View our full range of Linux laptops at: [https://starlabs.systems](https://starlabs.systems)