Commit ed2f6829 authored by Seblu's avatar Seblu
Browse files

Bump to 4.9.211

parent a26823df
Loading
Loading
Loading
Loading
Loading
+13 −15
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Customized version of linux for seblu computers

pkgname=linux-seblu
pkgver=4.9.193
pkgver=4.9.211
pkgrel=1
pkgdesc='The Linux Kernel cooked by Seblu'
arch=('x86_64')
@@ -12,20 +12,18 @@ options=('!strip' '!buildflags')
makedepends=('kmod' 'git' 'make' 'gcc' 'bc' 'sed')
depends=('linux-firmware' 'kernel-install-hook')
install=linux-seblu.install
_repourl='git+https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git'
source=("$_repourl#tag=v${pkgver/_/-}"
source=('git+https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git#tag=v4.9.211'
        "config.$CARCH")
md5sums=('SKIP'
         'bac6ce55d96999ccede6b7ed780490ca')
sha256sums=('SKIP'
            '782517ef471ea92522832812527914ad3cde0e5d769424d5f77df26605c31191')

prepare() {
  # fake linux directory if necessary
  if [[ ${_repourl##*/} != 'linux.git' ]]; then
    local _reponame="${_repourl##*/}"
    ln -sfT "${_reponame%.git}" linux
  fi
pkgver() {
  cd linux-stable
  make kernelversion|tr '-' '_'
}

  cd linux
prepare() {
  cd linux-stable

  # apply patches
  for _f in "${source[@]}"; do
@@ -56,7 +54,7 @@ prepare() {
}

build() {
  cd linux
  cd linux-stable

  msg2 'Make prepare'
  make prepare
@@ -69,12 +67,12 @@ build() {
}

package() {
  cd linux
  cd linux-stable

  # get real compiled kernel version
  kernrel=$(make kernelrelease)
  pkgdesc+=", version $kernrel"
  pkgname="linux-$kernrel"
  pkgver=$(make kernelversion|tr '-' '_')
  provides=("linux=$pkgver" "linux-headers=$pkgver")

  msg2 "Kernel release: $kernrel"
+4 −2
Original line number Diff line number Diff line
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.9.193 Kernel Configuration
# Linux/x86 4.9.211 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
@@ -574,6 +574,9 @@ CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
CONFIG_X86_INTEL_MPX=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_X86_INTEL_TSX_MODE_OFF=y
# CONFIG_X86_INTEL_TSX_MODE_ON is not set
# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set
CONFIG_EFI=y
CONFIG_EFI_STUB=y
CONFIG_EFI_MIXED=y
@@ -5129,7 +5132,6 @@ CONFIG_USB_EMI62=m
CONFIG_USB_EMI26=m
CONFIG_USB_ADUTUX=m
CONFIG_USB_SEVSEG=m
CONFIG_USB_RIO500=m
CONFIG_USB_LEGOTOWER=m
CONFIG_USB_LCD=m
CONFIG_USB_CYPRESS_CY7C63=m
+1 −1
Original line number Diff line number Diff line
#!/bin/bash -e

SRC=src/linux
SRC=src/linux-stable
CONFIG=config.x86_64

config_equal()