Hello:
I'm trying to make a EFI bootable arm iso based on CentOS-7-aarch64-Minimal-1810.iso. I extracted Iso and get the flie tree like this:
.
©À©¤©¤ boot.catalog
©À©¤©¤ CentOS_BuildTag
©À©¤©¤ EFI
©À©¤©¤ EULA
©À©¤©¤ GPL
©À©¤©¤ images
©À©¤©¤ LiveOS
©À©¤©¤ Packages
©À©¤©¤ repodata
©À©¤©¤ RPM-GPG-KEY-CentOS-7
©À©¤©¤ RPM-GPG-KEY-CentOS-7-aarch64
©¸©¤©¤ TRANS.TBL
Then I add my own rpms into Packages and repack the iso with shell command:
mkisofs -o /root/myiso.iso -eltorito-alt-boot -e images/efiboot.img -c boot.catalog -no-emul-boot -boot-load-size 4 -boot-info-table -V 'CUSTOM CENTOS' -R -J -T .
After that I burned the myiso.iso to disc, but I couldn't get the "EFI device 0" choice option on Arm Server's BootManager while the CentOS-7-aarch64-Minimal-1810.iso was OK, I don't know what's the problem and how to make a cutomized iso which can be recognized as a EFI device on ARM Server?
Thanks!