mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-15 07:29:12 +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-'):]
|