Fix: исправлен баг с определением пакета текущего ядра
master 3.7.3.6
root 1 year ago
parent 5efa64ed5a
commit 242863e85a

@ -1586,7 +1586,9 @@ class VariableClUpdateKernelPkg(ReadonlyVariable):
def get(self): def get(self):
src_path = self.Get('cl_update_kernel_src_path') src_path = self.Get('cl_update_kernel_src_path')
if src_path: if src_path:
return qfile = process('/usr/bin/qfile', '-vqC', src_path)
if qfile.success():
return qfile.read().strip()
return "" return ""

Loading…
Cancel
Save