Remove installer and install first setup
This commit is contained in:
parent
5add4b75cb
commit
cc30816b7d
2 changed files with 7 additions and 3 deletions
|
@ -19,7 +19,7 @@ git clone 'https://github.com/blend-os/blend-inst'
|
||||||
# which will simply print out the commands that will run in a true
|
# which will simply print out the commands that will run in a true
|
||||||
# installation, instead of actually running them.
|
# installation, instead of actually running them.
|
||||||
|
|
||||||
./blend-inst config 'sample-config.json'
|
TESTING_INST=true ./blend-inst config 'sample-config.json'
|
||||||
```
|
```
|
||||||
|
|
||||||
## For distributors
|
## For distributors
|
||||||
|
@ -31,7 +31,7 @@ Jade-GUI, developed by Crystal Linux, can be used with blend-inst.
|
||||||
### Error codes:
|
### Error codes:
|
||||||
|
|
||||||
* `1` - Partitioning error
|
* `1` - Partitioning error
|
||||||
* `2` - Username not allowed
|
* `3` - Username not allowed
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
|
@ -39,4 +39,4 @@ Anyone is free to contribute to blend-inst! It's licensed under the GPL-3.0 lice
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
blend-inst has been written by **Rudra Saraswat**. However, the code is inspired by Jade (written in **Rust**), since it's meant to be a drop-in replacement for Jade. Jade is a project developed by **Crystal Linux**.
|
blend-inst has been written by **Rudra Saraswat**. However, the code is inspired by Jade (written in **Rust**), since it's meant to be a drop-in replacement for Jade. Jade is a project developed by **Crystal Linux**.
|
||||||
|
|
|
@ -216,6 +216,10 @@ def inst_setup_base(config):
|
||||||
install_pkgs('flatpak')
|
install_pkgs('flatpak')
|
||||||
# Install kernel
|
# Install kernel
|
||||||
install_pkgs(config['kernel'])
|
install_pkgs(config['kernel'])
|
||||||
|
# Remove jade-gui and blend-inst
|
||||||
|
exec_chroot(['pacman', '-Rn', '--noconfirm', 'jade-gui', 'blend-inst'])
|
||||||
|
# Install blendos-first-setup
|
||||||
|
install_pkgs('blendos-first-setup-git')
|
||||||
|
|
||||||
|
|
||||||
def inst_bootloader(config):
|
def inst_bootloader(config):
|
||||||
|
|
Loading…
Reference in a new issue