Adjusted source/dest items

This commit is contained in:
2Shirt 2019-04-08 02:58:07 -07:00
parent 4c33c110b7
commit 5fe37b62b2
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -49,19 +49,26 @@ BOOT_ENTRIES = {
# Definitions: Sources and Destinations # Definitions: Sources and Destinations
## NOTES: Paths are relative to the root of the ISO/UFD ## NOTES: Paths are relative to the root of the ISO/UFD
## Sources use rsync's trailing slash syntax ## Sources use rsync's trailing slash syntax
ITEMS_LINUX_FULL = ( ITEMS = {
'Extra Dir': (
('/', '/'),
),
'Linux': (
('/arch', '/'), ('/arch', '/'),
('/isolinux', '/'), ('/isolinux', '/'),
('/EFI/boot', '/EFI/'), ('/EFI/boot', '/EFI/'),
('/EFI/memtest86', '/EFI/'), ('/EFI/memtest86', '/EFI/'),
) ),
ITEMS_LINUX_MINIMAL = ( 'Linux (Minimal)': (
('/arch/boot/archiso.img', '/arch_minimal/'), ('/arch/boot/archiso.img', '/arch_minimal/'),
('/arch/boot/vmlinuz', '/arch_minimal/'), ('/arch/boot/vmlinuz', '/arch_minimal/'),
('/arch/pkglist.x86_64.txt', '/arch_minimal/'), ('/arch/pkglist.x86_64.txt', '/arch_minimal/'),
('/arch/x86_64', '/arch_minimal/'), ('/arch/x86_64', '/arch_minimal/'),
) ),
ITEMS_WINPE = ( 'Main Kit': (
('/', '/{}/'.format(KIT_NAME_FULL)),
),
'WinPE': (
('/bootmgr', '/'), ('/bootmgr', '/'),
('/bootmgr.efi', '/'), ('/bootmgr.efi', '/'),
('/en_us', '/'), ('/en_us', '/'),
@ -72,7 +79,8 @@ ITEMS_WINPE = (
('/Boot/boot.sdi', '/sources/'), ('/Boot/boot.sdi', '/sources/'),
('/bootmgr', '/sources/'), ('/bootmgr', '/sources/'),
('/sources/boot.wim', '/sources/'), ('/sources/boot.wim', '/sources/'),
) ),
}
if __name__ == '__main__': if __name__ == '__main__':
print("This file is not meant to be called directly.") print("This file is not meant to be called directly.")