at master 485 B view raw
1#!/usr/bin/env bash 2cd "$(dirname "$(readlink -f "$0")")" || exit 3 4echo "Update linux (mainline)" 5COMMIT=1 ./update-mainline.py || echo "update-mainline failed with exit code $?" 6 7echo "Update linux-rt" 8COMMIT=1 ./update-rt.sh || echo "update-rt failed with exit code $?" 9 10echo "Update linux-libre" 11COMMIT=1 ./update-libre.sh || echo "update-libre failed with exit code $?" 12 13echo "Update linux-hardened" 14COMMIT=1 ./hardened/update.py || echo "update-hardened failed with exit code $?"