Move submodules to root directory

This commit is contained in:
Fabian Mastenbroek 2021-03-15 20:34:24 +01:00
parent 6ead8d7e6f
commit 032fd5e72c
No known key found for this signature in database
GPG key ID: 405FC6F81F0A7B85
7 changed files with 13 additions and 12 deletions

View file

@ -1,9 +1,9 @@
#!/bin/bash
# Script to prepare update for new kernel release
set -e
set -e
set -o pipefail
LINUX_REPOSITORY=submodules/ubuntu-mainline
LINUX_REPOSITORY=linux
while getopts "R:t:b:v:r:h" OPTION; do
case $OPTION in

View file

@ -1,9 +1,9 @@
#!/bin/bash
# Script for parsing version information in the repository
set -e
set -e
set -o pipefail
LINUX_REPOSITORY=submodules/ubuntu-mainline
LINUX_REPOSITORY=linux
LINUX_VERSION_MAJOR=$(sed -n "s/^KERNEL_MAJ=\([0-9]*$\)/\1/p" < Makefile | xargs)
LINUX_VERSION_MINOR=$(sed -n "s/^KERNEL_MIN=\([0-9]*$\)/\1/p" < Makefile | xargs)
LINUX_VERSION_PATCHLEVEL=$(sed -n "s/^KERNEL_PATCHLEVEL=\([0-9]*$\)/\1/p" < Makefile | xargs)