2014-10-16 20:59:24 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-09-19 12:12:10 +00:00
|
|
|
cd "$(dirname "$(readlink -f "$0")")" || exit
|
2014-10-16 20:59:24 +00:00
|
|
|
|
2023-09-19 12:12:10 +00:00
|
|
|
echo "Update linux (mainline)"
|
|
|
|
COMMIT=1 ./update-mainline.py || echo "update-mainline failed with exit code $?"
|
2014-10-16 20:59:24 +00:00
|
|
|
|
2023-09-19 12:12:10 +00:00
|
|
|
echo "Update linux-rt"
|
|
|
|
COMMIT=1 ./update-rt.sh || echo "update-rt failed with exit code $?"
|
2014-10-16 20:59:24 +00:00
|
|
|
|
2023-09-19 12:12:10 +00:00
|
|
|
echo "Update linux-libre"
|
|
|
|
COMMIT=1 ./update-libre.sh || echo "update-libre failed with exit code $?"
|
2014-10-16 20:59:24 +00:00
|
|
|
|
2023-09-19 12:12:10 +00:00
|
|
|
echo "Update linux-hardened"
|
|
|
|
COMMIT=1 ./hardened/update.py || echo "update-hardened failed with exit code $?"
|