From ff38cfc603ee10413c240c5b75807266b8b56512 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sun, 16 Aug 2020 15:48:27 +0300 Subject: linux: bump to 5.8.1 --- personal/linux/build | 72 ++----------- personal/linux/checksums | 4 +- personal/linux/files/.config | 252 ++++++++++++++++++++++--------------------- personal/linux/sources | 2 +- personal/linux/version | 2 +- 5 files changed, 142 insertions(+), 190 deletions(-) (limited to 'personal') diff --git a/personal/linux/build b/personal/linux/build index 6f77fd3..1747214 100755 --- a/personal/linux/build +++ b/personal/linux/build @@ -1,76 +1,16 @@ #!/bin/sh -e -# POSIX install functions, similar to 'install -Dm' -# and 'install -Dm* -t' -kinstall() { - # usage: kinstall 644 file /usr/bin/prog - mkdir -p "${3%/*}"; rmdir "$3" 2>/dev/null ||: - cp "$2" "$3" - [ -d "$3" ] && set -- "$1" "$3/${2##*/}" - chmod "$1" "${3:-$2}" -} - -kinstall_t() { - # usage: kinstall_t 644 /usr/bin prog1 prog2 - mod=$1 dir=$2; mkdir -p "$dir" - shift 2 - for file; do - cp "$file" "$dir" - chmod "$mod" "$dir/${file##*/}" - done -} - -# Use an out function similar to KISS' log. -out() { printf '\033[1;33m-> \033[1;36mlinux \033[m%s\n' "$@" >&2 ;} - patch -p1 < kernel-no-perl.patch cp .config oldconfig make olddefconfig # Store the build version in a file and a variable. -make kernelrelease > version -read ver < version - -modulepath="$1/usr/lib/modules/$ver/build" +read -r ver <