ODROID-M1: Change default kernel version

Current default kernel version of ODROID-M1 is 4.19.219.
Change default kernel version to 5.10.0 for focal distro,
or 6.1.0 for other distro.

Signed-off-by: phillip.choi <phillip.choi@hardkernel.com>
Change-Id: I9179434d0f1db1700a2015ebe98dfb39d38ead11
This commit is contained in:
phillip.choi
2024-11-11 12:46:49 +09:00
committed by Dongjin Kim
parent aa8f25b1cf
commit 283818ed65

View File

@@ -3,7 +3,14 @@ get_machine_name() {
}
get_kernel_package() {
echo "odroidm1"
case ${DISTRO} in
focal)
echo "5.10.0-odroid-arm64"
;;
*)
echo "6.1.0-odroid-arm64"
;;
esac
}
get_bootscript_package() {