This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
server-kernel/README.md

26 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2024-05-26 19:22:24 +02:00
# ***DEPRECATED***
We use upstream from now on, it pretty much makes no difference except for a few MiB's less.
2024-03-11 16:50:49 +01:00
# StarOpenSource's server-kernel project
This repositories includes everything you need to build StarOpenSource's server-oriented linux kernel, based on Clear Linux's kernel patches and various other tweaks introduced by us and [upstream (JeremyStarTM)](https://git.staropensource.de/JeremyStarTM/kernel-optimized).
2024-03-11 00:47:06 +01:00
## Warning
As with every other software, make sure to update your kernel regularily. Missing updates and security patches make your system vulnerable. So run `git pull` and then `buildtool.sh` regularily, thank you ^^
2024-03-10 16:04:07 +01:00
## Building
To build this kernel, run this command in your terminal:
```bash
2024-03-11 16:50:49 +01:00
curl -sSL "https://git.staropensource.de/StarOpenSource/server-kernel/raw/branch/develop/buildtool.sh">/tmp/buildtool.sh;chmod +x /tmp/buildtool.sh;/tmp/buildtool.sh
2024-03-10 16:04:07 +01:00
```
2024-03-11 00:47:06 +01:00
## Building from local repository
If you've already built this kernel or want to build it again without starting from scratch execute this:
```bash
env BUILDTOOL_LOCALDIR=SET ./buildtool.sh
```
2024-03-11 01:58:42 +01:00
## Cleaning repository
To remove everything `makepkg` produced, simply run:
```bash
./cleantool.sh
```