You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
579 B
15 lines
579 B
from leapp.models import fields, Model
|
|
from leapp.topics import BootPrepTopic
|
|
|
|
|
|
class BootContent(Model):
|
|
"""
|
|
For information about what Leapp copies to the /boot/. We need to pass this information
|
|
at least to the actors performing /boot/ cleanup.
|
|
"""
|
|
topic = BootPrepTopic
|
|
|
|
kernel_path = fields.String(help='Filepath of the kernel copied to /boot/ by Leapp.')
|
|
initram_path = fields.String(help='Filepath of the initramfs copied to /boot/ by Leapp.')
|
|
kernel_hmac_path = fields.String(help='Filepath of the kernel hmac copied to /boot/ by Leapp.')
|