Skip to content

Commit

Permalink
Merge pull request #36 from DieterReuter/upgrade-kernel-4.9.65
Browse files Browse the repository at this point in the history
Upgrade to kernel 4.9.65 optimized for Docker
  • Loading branch information
DieterReuter authored Nov 28, 2017
2 parents b69778b + fac2a8a commit 99f958c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions builder/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ if [ ! -f "$FILENAME" ]; then
fetch --repo="https://github.com/DieterReuter/rpi-bootloader" --tag="v$BOOTLOADER_BUILD" --release-asset="rpi-bootloader.tar.gz" /workspace
fi
tar -xf "$FILENAME" -C "${BUILD_PATH}"
FILENAME=/workspace/$KERNEL_VERSION-bee42-v8.tar.gz
FILENAME=/workspace/$KERNEL_VERSION-hypriotos-v8.tar.gz
if [ ! -f "$FILENAME" ]; then
fetch --repo="https://github.com/DieterReuter/rpi64-kernel" --tag="v$KERNEL_BUILD" --release-asset="$KERNEL_VERSION-bee42-v8.tar.gz.sha256" /workspace
fetch --repo="https://github.com/DieterReuter/rpi64-kernel" --tag="v$KERNEL_BUILD" --release-asset="$KERNEL_VERSION-bee42-v8.tar.gz" /workspace
fetch --repo="https://github.com/DieterReuter/rpi64-kernel" --tag="v$KERNEL_BUILD" --release-asset="$KERNEL_VERSION-hypriotos-v8.tar.gz.sha256" /workspace
fetch --repo="https://github.com/DieterReuter/rpi64-kernel" --tag="v$KERNEL_BUILD" --release-asset="$KERNEL_VERSION-hypriotos-v8.tar.gz" /workspace
fi
tar -xf "$FILENAME" -C "${BUILD_PATH}"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
require 'spec_helper'

describe command('uname -r') do
its(:stdout) { should match /4.9.13-bee42-v8/ }
its(:stdout) { should match /4.9.65-hypriotos-v8/ }
its(:exit_status) { should eq 0 }
end

describe file('/lib/modules/4.9.13-bee42-v8/kernel') do
describe file('/lib/modules/4.9.65-hypriotos-v8/kernel') do
it { should be_directory }
end
4 changes: 2 additions & 2 deletions versions.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ RAW_IMAGE_CHECKSUM="2fbeb13b7b0f2308dbd0d82780b54c33003ad43d145ff08498b25fb8bbe1

# specific versions of kernel/firmware and docker tools
export BOOTLOADER_BUILD="20171003-131045"
export KERNEL_BUILD="20170303-160601"
export KERNEL_VERSION="4.9.13"
export KERNEL_BUILD="20171128-062501"
export KERNEL_VERSION="4.9.65"
export DOCKER_ENGINE_VERSION="17.10.0~ce"
export DOCKER_COMPOSE_VERSION="1.17.0"
export DOCKER_MACHINE_VERSION="0.13.0"

0 comments on commit 99f958c

Please sign in to comment.