Move submodules to root directory
This commit is contained in:
parent
6ead8d7e6f
commit
032fd5e72c
7 changed files with 13 additions and 12 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue