Adjusted source/dest items
This commit is contained in:
parent
4c33c110b7
commit
5fe37b62b2
1 changed files with 32 additions and 24 deletions
|
|
@ -49,30 +49,38 @@ 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 = {
|
||||||
('/arch', '/'),
|
'Extra Dir': (
|
||||||
('/isolinux', '/'),
|
('/', '/'),
|
||||||
('/EFI/boot', '/EFI/'),
|
),
|
||||||
('/EFI/memtest86', '/EFI/'),
|
'Linux': (
|
||||||
)
|
('/arch', '/'),
|
||||||
ITEMS_LINUX_MINIMAL = (
|
('/isolinux', '/'),
|
||||||
('/arch/boot/archiso.img', '/arch_minimal/'),
|
('/EFI/boot', '/EFI/'),
|
||||||
('/arch/boot/vmlinuz', '/arch_minimal/'),
|
('/EFI/memtest86', '/EFI/'),
|
||||||
('/arch/pkglist.x86_64.txt', '/arch_minimal/'),
|
),
|
||||||
('/arch/x86_64', '/arch_minimal/'),
|
'Linux (Minimal)': (
|
||||||
)
|
('/arch/boot/archiso.img', '/arch_minimal/'),
|
||||||
ITEMS_WINPE = (
|
('/arch/boot/vmlinuz', '/arch_minimal/'),
|
||||||
('/bootmgr', '/'),
|
('/arch/pkglist.x86_64.txt', '/arch_minimal/'),
|
||||||
('/bootmgr.efi', '/'),
|
('/arch/x86_64', '/arch_minimal/'),
|
||||||
('/en_us', '/'),
|
),
|
||||||
('/Boot/', '/boot/'),
|
'Main Kit': (
|
||||||
('/EFI/Boot/', '/EFI/Microsoft/'),
|
('/', '/{}/'.format(KIT_NAME_FULL)),
|
||||||
('/EFI/Microsoft/', '/EFI/Microsoft/'),
|
),
|
||||||
('/Boot/BCD', '/sources/'),
|
'WinPE': (
|
||||||
('/Boot/boot.sdi', '/sources/'),
|
('/bootmgr', '/'),
|
||||||
('/bootmgr', '/sources/'),
|
('/bootmgr.efi', '/'),
|
||||||
('/sources/boot.wim', '/sources/'),
|
('/en_us', '/'),
|
||||||
)
|
('/Boot/', '/boot/'),
|
||||||
|
('/EFI/Boot/', '/EFI/Microsoft/'),
|
||||||
|
('/EFI/Microsoft/', '/EFI/Microsoft/'),
|
||||||
|
('/Boot/BCD', '/sources/'),
|
||||||
|
('/Boot/boot.sdi', '/sources/'),
|
||||||
|
('/bootmgr', '/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.")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue