Rebrand + update urls
This commit is contained in:
parent
a685df59b4
commit
beda7cba2b
4 changed files with 17 additions and 18 deletions
6
PKGBUILD
6
PKGBUILD
|
@ -96,12 +96,12 @@ _minor=9
|
||||||
_srcname=linux-${_major}
|
_srcname=linux-${_major}
|
||||||
_clr=${_major}.8-1413
|
_clr=${_major}.8-1413
|
||||||
_gcc_more_v='20240221.2'
|
_gcc_more_v='20240221.2'
|
||||||
pkgbase=linux-jstm-optimized
|
pkgbase=linux-server-kernel
|
||||||
pkgver=${_major}.${_minor}
|
pkgver=${_major}.${_minor}
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Optimized Linux kernel. Includes Clear Linux's kernel config and some tweaks made by JeremyStarTM."
|
pkgdesc="Optimized Linux kernel. Includes Clear Linux's kernel config and some tweaks made by StarOpenSource and upstream (JeremyStarTM)."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://git.staropensource.de/JeremyStarTM/kernel-optimized"
|
url="https://git.staropensource.de/StarOpenSource/server-kernel"
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
makedepends=('bc' 'cpio' 'git' 'libelf' 'pahole' 'xmlto')
|
makedepends=('bc' 'cpio' 'git' 'libelf' 'pahole' 'xmlto')
|
||||||
if [ -n "$_use_llvm_lto" ]; then
|
if [ -n "$_use_llvm_lto" ]; then
|
||||||
|
|
|
@ -12,12 +12,12 @@ _minor=9
|
||||||
_srcname=linux-${_major}
|
_srcname=linux-${_major}
|
||||||
_clr=${_major}.8-1413
|
_clr=${_major}.8-1413
|
||||||
_gcc_more_v='20240221.2'
|
_gcc_more_v='20240221.2'
|
||||||
pkgbase=linux-jstm-optimized
|
pkgbase=linux-server-kernel
|
||||||
pkgver=${_major}.${_minor}
|
pkgver=${_major}.${_minor}
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Optimized Linux kernel. Includes Clear Linux's kernel config and some tweaks made by JeremyStarTM."
|
pkgdesc="Optimized Linux kernel. Includes Clear Linux's kernel config and some tweaks made by StarOpenSource and upstream (JeremyStarTM)."
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url="https://git.staropensource.de/JeremyStarTM/kernel-optimized"
|
url="https://git.staropensource.de/StarOpenSource/server-kernel"
|
||||||
license=('GPL2')
|
license=('GPL2')
|
||||||
makedepends=('bc' 'cpio' 'git' 'libelf' 'pahole' 'xmlto')
|
makedepends=('bc' 'cpio' 'git' 'libelf' 'pahole' 'xmlto')
|
||||||
if [ -n "$_use_llvm_lto" ]; then
|
if [ -n "$_use_llvm_lto" ]; then
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
# JeremyStarTM's optimized kernel
|
# StarOpenSource's server-kernel project
|
||||||
This repositories includes everything you need to build JeremyStarTM's custom optimized kernel, based on Clear Linux's kernel patches and various other tweaks introduced by JeremyStarTM.
|
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).
|
||||||
## Warning
|
## 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 ^^
|
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 ^^
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
To build this kernel, run this command in your terminal:
|
To build this kernel, run this command in your terminal:
|
||||||
```bash
|
```bash
|
||||||
curl -sSL "https://git.staropensource.de/JeremyStarTM/kernel-optimized/raw/branch/develop/buildtool.sh">/tmp/buildtool.sh;chmod +x /tmp/buildtool.sh;/tmp/buildtool.sh
|
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
|
||||||
```
|
```
|
||||||
|
|
||||||
## Building from local repository
|
## Building from local repository
|
||||||
|
|
17
buildtool.sh
17
buildtool.sh
|
@ -6,10 +6,10 @@ export "LANG=C.UTF-8"
|
||||||
export "LC_MESSAGES=${LANG}"
|
export "LC_MESSAGES=${LANG}"
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
export "BUILDTOOL_ISSUETRACKER=https://git.staropensource.de/JeremyStarTM/kernel-optimized/issues"
|
export "BUILDTOOL_ISSUETRACKER=https://git.staropensource.de/StarOpenSource/server-kernel/issues"
|
||||||
## Cloning (update these if you fork this project)
|
## Cloning (update these if you fork this project)
|
||||||
export "BUILDTOOL_REPOSITORY=https://git.staropensource.de/JeremyStarTM/kernel-optimized.git"
|
export "BUILDTOOL_REPOSITORY=https://git.staropensource.de/StarOpenSource/server-kernel.git"
|
||||||
export "BUILDTOOL_CLONEDIR=jstm-kernel-optimized"
|
export "BUILDTOOL_CLONEDIR=server-kernel"
|
||||||
## Base packages to install, packages will be added by questions
|
## Base packages to install, packages will be added by questions
|
||||||
export "BUILDTOOL_PACKAGES=base-devel git rustup"
|
export "BUILDTOOL_PACKAGES=base-devel git rustup"
|
||||||
## Building command line stuff
|
## Building command line stuff
|
||||||
|
@ -66,12 +66,11 @@ function errore() {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Banner
|
# Banner
|
||||||
special " _ _ _ _ _ _ _ _ "
|
special " based on jstm-kernel-optimized _ made by staropensource _ "
|
||||||
special " (_)___| |_ _ __ ___ | | _____ _ __ _ __ ___| | ___ _ __ | |_(_)_ __ ___ (_)_______ __| |"
|
special " ___ ___ _ ____ _____ _ __ | | _____ _ __ _ __ ___| |"
|
||||||
special " | / __| __| '_ \` _ \\ _____| |/ / _ \\ '__| '_ \\ / _ \\ |_____ / _ \\| '_ \\| __| | '_ \` _ \\| |_ / _ \\/ _\` |"
|
special "/ __|/ _ \ '__\ \ / / _ \ '__|____| |/ / _ \ '__| '_ \ / _ \ |"
|
||||||
special " | \\__ \\ |_| | | | | |_____| < __/ | | | | | __/ |_____| (_) | |_) | |_| | | | | | | |/ / __/ (_| |"
|
special "\__ \ __/ | \ V / __/ | |_____| < __/ | | | | | __/ |"
|
||||||
special " _/ |___/\\__|_| |_| |_| |_|\\_\\___|_| |_| |_|\\___|_| \\___/| .__/ \\__|_|_| |_| |_|_/___\\___|\\__,_|"
|
special "|___/\___|_| \_/ \___|_| |_|\_\___|_| |_| |_|\___|_|"
|
||||||
special "|__/ |_|"
|
|
||||||
empty
|
empty
|
||||||
|
|
||||||
# Print environment configuration
|
# Print environment configuration
|
||||||
|
|
Reference in a new issue