Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oclp_r/efi_builder/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def _pcie_handling(self) -> None:
for i, controller in enumerate(nvme_devices):
if controller.vendor_id == 0x106b:
continue
logging.info(self.trans.storage()["- Found 3rd Party NVMe SSD ({i}): {controller.vendor_id}:{device_id}"].format(i=i+1,vendor_id=utilities.friendly_hex(controller.vendor_id),device_id=utilities.friendly_hex(controller.device_id)))
logging.info(self.trans.storage()["- Found 3rd Party NVMe SSD ({i}): {vendor_id}:{device_id}"].format(i=i+1,vendor_id=utilities.friendly_hex(controller.vendor_id),device_id=utilities.friendly_hex(controller.device_id)))
self.config["#Revision"][f"Hardware-NVMe-{i}"] = f"{utilities.friendly_hex(controller.vendor_id)}:{utilities.friendly_hex(controller.device_id)}"

# Disable Bit 0 (L0s), enable Bit 1 (L1)
Expand Down
1 change: 1 addition & 0 deletions oclp_r/support/translate_language.py
Original file line number Diff line number Diff line change
Expand Up @@ -1260,6 +1260,7 @@ def gui_install_oc(self):
"Available disks:":"Available disks:",
"Available partitions for ":"Available partitions for ",
'OpenCore has finished installing to disk.\n\nYou can eject the drive, insert it into the ':'OpenCore has finished installing to disk.\n\nYou can eject the drive, insert it into the ',
'OpenCore has finished installing to disk.\n\nYou will need to reboot and hold the Option key and select OpenCore/Boot EFI\'s option.\n\nWould you like to reboot?':'OpenCore has finished installing to disk.\n\nYou will need to reboot and hold the Option key and select OpenCore/Boot EFI\'s option.\n\nWould you like to reboot?',
"Note: Blue represents the disk OpenCore is currently booted from":"Note: Blue represents the disk OpenCore is currently booted from",
}
elif self.language_point=="简体中文":
Expand Down