Update upgrade script
This commit is contained in:
parent
d156a5c849
commit
d9caba7166
1 changed files with 20 additions and 22 deletions
|
@ -1,31 +1,29 @@
|
||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
_5_2_2_2_changes() {
|
function _5_2_2_2_changes() {
|
||||||
echo ":: A new command line option was added: add page_alloc.shuffle=1"
|
echo ":: Update 5.2.2-2: A new command line option was added: add page_alloc.shuffle=1"
|
||||||
}
|
}
|
||||||
|
|
||||||
_5_2_9_6_changes() {
|
function _5_2_9_6_changes() {
|
||||||
echo ":: Microcode is no longer builtin. See https://wiki.archlinux.org/index.php/Microcode"
|
echo ":: Update 5.2.9-6: Microcode is no longer builtin. See https://wiki.archlinux.org/index.php/Microcode"
|
||||||
}
|
}
|
||||||
|
|
||||||
post_install() {
|
function post_install() {
|
||||||
echo ":: Clear Linux bundles a custom command line which must be applied manually on other distributions."
|
echo ":: Clear Linux bundles a custom command line which must be applied manually on other distributions."
|
||||||
echo " This is their default command line:"
|
echo " This is their default command line:"
|
||||||
echo " quiet console=tty0 console=ttyS0,115200n8 cryptomgr.notests initcall_debug"
|
echo " quiet console=tty0 console=ttyS0,115200n8 cryptomgr.notests initcall_debug"
|
||||||
echo " intel_iommu=igfx_off kvm-intel.nested=1 no_timer_check noreplace-smp"
|
echo " intel_iommu=igfx_off kvm-intel.nested=1 no_timer_check noreplace-smp"
|
||||||
echo " page_alloc.shuffle=1 rcupdate.rcu_expedited=1"
|
echo " page_alloc.shuffle=1 rcupdate.rcu_expedited=1"
|
||||||
echo " rootfstype=ext4,btrfs,xfs,f2fs tsc=reliable rw"
|
echo " rootfstype=ext4,btrfs,xfs,f2fs tsc=reliable rw"
|
||||||
}
|
}
|
||||||
|
|
||||||
post_upgrade() {
|
function post_upgrade() {
|
||||||
local v upgrades=(
|
local version upgrades=(
|
||||||
5.2.2-2
|
5.2.2-2
|
||||||
5.2.9-6
|
5.2.9-6
|
||||||
)
|
)
|
||||||
|
|
||||||
for v in "${upgrades[@]}"; do
|
for version in "${upgrades[@]}"; do
|
||||||
if [[ $(vercmp "${v}" "$2") -eq 1 ]]; then
|
[[ $(vercmp "${version}" "$2") -eq 1 ]] && "_${version//[.-]/_}_changes"
|
||||||
"_${v//[.-]/_}_changes"
|
done
|
||||||
fi
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue