1
0
mirror of https://github.com/rancher/os-kernel.git synced 2025-09-16 14:58:15 +00:00

fix publish.sh, and enable BBR congestion as a module

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
Sven Dowideit
2017-04-09 23:46:40 +00:00
parent c90bf6ff0b
commit 0dac81c97b
2 changed files with 6 additions and 6 deletions

View File

@@ -6,7 +6,6 @@ if ! ./scripts/ci; then
echo "build failure see release.log"
exit 1
fi
mv build.log dist/
echo
echo "--- ${KERNEL_VERSION} Kernel prepared for RancherOS"
@@ -15,7 +14,7 @@ echo " ./dist/kernel/extra-linux-${KERNEL_VERSION}-x86.tar.gz"
echo " ./dist/kernel/build-linux-${KERNEL_VERSION}-x86.tar.gz"
echo " ./dist/kernel/linux-${KERNEL_VERSION}-x86.tar.gz"
echo " ./dist/kernel/config"
echo " ./dist/build.log"
echo " ./release.log"
echo
echo "Images ready to push:"
cat dist/images
@@ -29,7 +28,7 @@ echo "github-release upload --user rancher --repo os-kernel --tag v${KERNEL_VER
echo "github-release upload --user rancher --repo os-kernel --tag v${KERNEL_VERSION} --file ./dist/kernel/config --name config" >> dist/publish.sh
echo "github-release upload --user rancher --repo os-kernel --tag v${KERNEL_VERSION} --file ./dist/kernel/extra-linux-${KERNEL_VERSION}-x86.tar.gz --name extra-linux-${KERNEL_VERSION}-x86.tar.gz" >> dist/publish.sh
echo "github-release upload --user rancher --repo os-kernel --tag v${KERNEL_VERSION} --file ./dist/kernel/linux-${KERNEL_VERSION}-x86.tar.gz --name linux-${KERNEL_VERSION}-x86.tar.gz" >> dist/publish.sh
echo "github-release upload --user rancher --repo os-kernel --tag v${KERNEL_VERSION} --file ./dist/build.log --name build.log" >> dist/publish.sh
echo "github-release upload --user rancher --repo os-kernel --tag v${KERNEL_VERSION} --file ./release.log --name release.log" >> dist/publish.sh
cat dist/images | sed 's/^/docker push /' >> dist/publish.sh
chmod 755 dist/publish.sh