From d7a42959953dd0b710b8a63ba3e73b3f17c91d96 Mon Sep 17 00:00:00 2001 From: Aditya Garg Date: Fri, 31 May 2024 20:48:52 +0530 Subject: [PATCH] Bluetooth missing is warning not error --- docs/tools/firmware.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/firmware.sh b/docs/tools/firmware.sh index 37787f96..13922eb5 100755 --- a/docs/tools/firmware.sh +++ b/docs/tools/firmware.sh @@ -914,7 +914,7 @@ pkg = FWPackage(sys.argv[2]) wifi_col = WiFiFWCollection(sys.argv[1]+"/wifi") pkg.add_files(sorted(wifi_col.files())) if not Path(sys.argv[1] + "/bluetooth").exists(): - log.error("\nBluetooth firmware missing.\n\nThe source of the firmware is likely macOS Big Sur or earlier. Therefore, only Wi-Fi firmware shall be extracted.\nBluetooth firmware is needed only for MacBookPro15,4, MacBookPro16,3 and MacBookAir9,1. So, you can ignore this message if you do not have these Macs.\n") + log.warning("\nBluetooth firmware missing.\n\nThe source of the firmware is likely macOS Big Sur or earlier. Therefore, only Wi-Fi firmware shall be extracted.\nBluetooth firmware is needed only for MacBookPro15,4, MacBookPro16,3 and MacBookAir9,1. So, you can ignore this message if you do not have these Macs.\n") else: bt_col = BluetoothFWCollection(sys.argv[1]+"/bluetooth") pkg.add_files(sorted(bt_col.files()))