Commit 80fd6d8a authored by Seblu's avatar Seblu
Browse files

Bump to 4.19.99

parent 7815dcc4
Loading
Loading
Loading
Loading
Loading
+12 −16
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
# Customized version of linux for seblu computers

pkgname=linux-seblu
pkgver=4.19.73
pkgver=4.19.99
pkgrel=1
pkgdesc='The Linux Kernel cooked by Seblu'
arch=('x86_64')
@@ -12,21 +12,18 @@ options=('!strip' '!buildflags')
makedepends=('glibc' 'libelf' '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/torvalds/linux.git'
_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.19.99'
        "config.$CARCH")
md5sums=('SKIP'
         '11c9b01fb7e4eb642c61cb0838bed935')
sha256sums=('SKIP'
            'b688ed5e32039c9eda22121ec09ffe6d6fb0a6be1687db176874af14a3c4f35d')

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
@@ -57,7 +54,7 @@ prepare() {
}

build() {
  cd linux
  cd linux-stable

  msg2 'Make prepare'
  make prepare
@@ -70,13 +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"
+8 −6
Original line number Diff line number Diff line
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.19.73 Kernel Configuration
# Linux/x86 4.19.99 Kernel Configuration
#

#
# Compiler: gcc (GCC) 9.1.0
# Compiler: gcc (GCC) 9.2.0
#
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=90100
CONFIG_GCC_VERSION=90200
CONFIG_CLANG_VERSION=0
CONFIG_CC_HAS_ASM_GOTO=y
CONFIG_IRQ_WORK=y
@@ -393,6 +393,9 @@ CONFIG_X86_SMAP=y
CONFIG_X86_INTEL_UMIP=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
@@ -4965,10 +4968,10 @@ CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
#
# Frame buffer Devices
#
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_DDC=m
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
@@ -5633,7 +5636,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()