We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de368b5 commit 052cff8Copy full SHA for 052cff8
builder.sh
@@ -83,6 +83,10 @@ case "$1" in
83
echo "Cloning the kernel's source"
84
kernel_get
85
;;
86
+ update)
87
+ echo "Pulling updated kernel sources"
88
+ kernel_pull
89
+ ;;
90
build)
91
echo "Building the kernel"
92
kernel_build
functions
@@ -147,6 +147,10 @@ kernel_get ()
147
{
148
git clone $KERNEL_REPO $BASE_DIR/$KERNEL_DIR;
149
}
150
+kernel_pull ()
151
+{
152
+ git -C $BASE_DIR/$KERNEL_DIR pull;
153
+}
154
#see https://wiki.ubuntu.com/Nexus7/Kernel for more information
155
kernel_build ()
156
0 commit comments