Skip to content
Snippets Groups Projects
Commit 97554d98 authored by Seblu's avatar Seblu
Browse files

Change way of handle with various repo names

parent de09186f
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,6 @@ ...@@ -3,8 +3,6 @@
pkgname=linux-seblu pkgname=linux-seblu
pkgver=4.12 pkgver=4.12
_repourl='git+https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git'
#_repourl='git+https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git'
pkgrel=1 pkgrel=1
pkgdesc='The Linux Kernel cooked by Seblu' pkgdesc='The Linux Kernel cooked by Seblu'
arch=('x86_64') arch=('x86_64')
...@@ -14,13 +12,20 @@ options=('!strip') ...@@ -14,13 +12,20 @@ options=('!strip')
makedepends=('kmod' 'git' 'make' 'gcc' 'bc' 'sed') makedepends=('kmod' 'git' 'make' 'gcc' 'bc' 'sed')
depends=('linux-firmware' 'kernel-install-hook') depends=('linux-firmware' 'kernel-install-hook')
install=linux-seblu.install install=linux-seblu.install
_reponame=${_repourl##*/} _repourl='git+https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git'
#_repourl='git+https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git'
source=("$_repourl#tag=v${pkgver/_/-}" source=("$_repourl#tag=v${pkgver/_/-}"
"config.$CARCH") "config.$CARCH")
md5sums=('SKIP' 'SKIP') md5sums=('SKIP' 'SKIP')
prepare() { prepare() {
cd ${_reponame%.git} # fake linux directory if necessary
if [[ ${_repourl##*/} != 'linux.git' ]]; then
local _reponame="${_repourl##*/}"
ln -sfT "${_reponame%.git}" linux
fi
cd linux
# apply patches # apply patches
for _f in "${source[@]}"; do for _f in "${source[@]}"; do
...@@ -51,7 +56,7 @@ prepare() { ...@@ -51,7 +56,7 @@ prepare() {
} }
build() { build() {
cd ${_reponame%.git} cd linux
msg2 'Make prepare' msg2 'Make prepare'
make prepare make prepare
...@@ -64,7 +69,7 @@ build() { ...@@ -64,7 +69,7 @@ build() {
} }
package() { package() {
cd ${_reponame%.git} cd linux
# get real compiled kernel version # get real compiled kernel version
kernrel=$(make kernelrelease) kernrel=$(make kernelrelease)
...@@ -106,7 +111,7 @@ install_sources() { ...@@ -106,7 +111,7 @@ install_sources() {
ln -rs "$kernsrc" "$pkgdir/usr/lib/modules/$kernrel"/build ln -rs "$kernsrc" "$pkgdir/usr/lib/modules/$kernrel"/build
# Copy kernel config files # Copy kernel config files
cd "$srcdir/${_reponame%.git}" cd "$srcdir/linux"
install -D -m644 Makefile "$kernsrc/Makefile" install -D -m644 Makefile "$kernsrc/Makefile"
install -D -m644 kernel/Makefile "$kernsrc/kernel/Makefile" install -D -m644 kernel/Makefile "$kernsrc/kernel/Makefile"
install -D -m644 .config "$kernsrc/.config" install -D -m644 .config "$kernsrc/.config"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment