mirror of
https://github.com/truenas/scale-build.git
synced 2025-12-20 02:49:28 +00:00
7 lines
182 B
Python
7 lines
182 B
Python
import glob
|
|
import os
|
|
|
|
|
|
def get_kernel_version(rootfs_path):
|
|
return glob.glob(os.path.join(rootfs_path, 'boot/vmlinuz-*-production+truenas'))[0].split('/')[-1][len('vmlinuz-'):]
|