Slice Posted June 4, 2023 Share Posted June 4, 2023 3 hours ago, chris1111 said: is this something to change at the level of the AppleALC injection? Doesn't work here anymore HP Prodesk 600 G1 and it worked fine before alcid=11 No changes. 1 Link to comment Share on other sites More sharing options...
LAbyOne Posted June 4, 2023 Share Posted June 4, 2023 (edited) 20 hours ago, Slice said: Built in Ventura using gcc-13.1.0 Few changes and clean Build folder. working fine indeed if this become default, you should also modify into buildme ./build_gcc12.sh -> ./build_gcc13.sh Also rolled back to Xcode 14.2 and all build fine again. Thanks for the hint. In the mean while 14.3.1 came to surface.... this time i will wait a little longer before update Edited June 4, 2023 by LAbyOne 1 Link to comment Share on other sites More sharing options...
Slice Posted June 4, 2023 Share Posted June 4, 2023 4 hours ago, LAbyOne said: working fine indeed if this become default, you should also modify into buildme ./build_gcc12.sh -> ./build_gcc13.sh Done. 1 Link to comment Share on other sites More sharing options...
Stefanalmare Posted June 4, 2023 Share Posted June 4, 2023 Ventura 13.4, Xcode 14.3.1, gcc13.1 compiled OK. No more warnings on log. 1 Link to comment Share on other sites More sharing options...
jackacc Posted June 6, 2023 Share Posted June 6, 2023 macOS Sonomaclover5152? Link to comment Share on other sites More sharing options...
Stefanalmare Posted June 6, 2023 Share Posted June 6, 2023 2 hours ago, jackacc said: macOS Sonomaclover5152? Link to comment Share on other sites More sharing options...
fabiosun Posted June 6, 2023 Share Posted June 6, 2023 (edited) It is a pity that clover doesn't support perfectly AM5 platform (see clover GitHub issue for additional informations) Edited June 6, 2023 by mariosun 2 Link to comment Share on other sites More sharing options...
Slice Posted June 8, 2023 Share Posted June 8, 2023 What is AM5 platform and why the Clover is 5149? Link to comment Share on other sites More sharing options...
fabiosun Posted June 9, 2023 Share Posted June 9, 2023 (edited) 16 hours ago, Slice said: What is AM5 platform and why the Clover is 5149? AMD consumer platform Cpu 7XXX series... Clover 5149 and latest 5152 have the same behavior you have to read open core PR posted above to understand FYI solution for Opencore (and AMD AM5 users) was an idea born from Clover boot loader code..ask @Shaneeefor additional informations Edited June 9, 2023 by mariosun added macOS Sonoma and Clover R5152 1 Link to comment Share on other sites More sharing options...
Slice Posted June 9, 2023 Share Posted June 9, 2023 Did you try Clover setting BusSpeedkHz = 100000 ? Or some nearest values? For example 4500000/44 = 102273 Link to comment Share on other sites More sharing options...
Anto65 Posted June 9, 2023 Share Posted June 9, 2023 (edited) Hi @Slice what is the trick to make the Sonoma icon appear ? Clover revision: 5152 (master, commit 5a6e6e363) Edit : Fixed for now by naming the os_sonoma icon to os_unkown 🙃 Edited June 9, 2023 by antuneddu 2 Link to comment Share on other sites More sharing options...
Anto65 Posted June 9, 2023 Share Posted June 9, 2023 I'm not at the pc now... I think chriss is already integrating the new icons... Otherwise I'll try to get it to you as soon as I can Link to comment Share on other sites More sharing options...
MifJpnAlphaPlus Posted June 10, 2023 Share Posted June 10, 2023 (edited) It feels so good. I think Chris will make cool icons. Thank you. Edited June 10, 2023 by MifJpnAlphaPlus Link to comment Share on other sites More sharing options...
fabiosun Posted June 10, 2023 Share Posted June 10, 2023 10 hours ago, Slice said: Did you try Clover setting BusSpeedkHz = 100000 ? Or some nearest values? For example 4500000/44 = 102273 Yes, it doesn't work to solve in Opencore they changed this code: with this one: And now audio is perfect with no glitch and always in synch Thank you for your attention Link to comment Share on other sites More sharing options...
Slice Posted June 10, 2023 Share Posted June 10, 2023 32 minutes ago, mariosun said: Yes, it doesn't work to solve in Opencore they changed this code: with this one: And now audio is perfect with no glitch and always in synch Thank you for your attention This is not a trick. busFreqValue remains the same. busFCvtn2tValue will not used anywhere. 10 hours ago, antuneddu said: Hi @Slice what is the trick to make the Sonoma icon appear ? Clover revision: 5152 (master, commit 5a6e6e363) Edit : Fixed for now by naming the os_sonoma icon to os_unkown 🙃 Sorry I forgot to implement new icon name. Link to comment Share on other sites More sharing options...
Slice Posted June 10, 2023 Share Posted June 10, 2023 Committed. Now you can use os_sonoma.png For vector themes I will prepare images soon. 1 2 Link to comment Share on other sites More sharing options...
Anto65 Posted June 10, 2023 Share Posted June 10, 2023 I follow .... // Ventura OSIconName = L"sonoma,mac"_XSW; } else if (OSVersion.elementAt(0) == 13 ){ I'll download as soon as it's ready... Thanks for your attention 🙏 Link to comment Share on other sites More sharing options...
Anto65 Posted June 10, 2023 Share Posted June 10, 2023 Tried the new commit (420cf1742) I'm sorry but it still doesn't work ... maybe I'm doing something wrong 🤔 ? Link to comment Share on other sites More sharing options...
Matgen84 Posted June 10, 2023 Share Posted June 10, 2023 Hi @Slice Thanks for your great job. I test last commit but Sonoma icon (png) doen't be detected ! Loader.cpp Spoiler XStringW OSIconName; if (OSVersion.isEmpty()) { OSIconName = L"mac"_XSW; } else if (OSVersion.elementAt(0) == 14 ){ // Ventura. <----- Sonoma instead of Ventura ? OSIconName = L"sonoma,mac"_XSW; } else if (OSVersion.elementAt(0) == 13 ){ // Ventura OSIconName = L"ventura,mac"_XSW; XIcon.cpp file : no Sonoma entry Spoiler //other oses will be added below "os_bigsur", //53 == ICON_BIGSUR "os_monterey", //54 == ICON_MONTEREY "os_ventura", //55 == ICON_VENTURA "" }; const INTN IconsNamesSize = sizeof(IconsNames) / sizeof(IconsNames[0]); Link to comment Share on other sites More sharing options...
fabiosun Posted June 10, 2023 Share Posted June 10, 2023 (edited) 5 hours ago, Slice said: 5 hours ago, mariosun said: Expand This is not a trick. busFreqValue remains the same. busFCvtn2tValue will not used anywhere. So this method/patch is not possible to apply in clover bootloader? because it could be useful also for other AMD cpu with an integrated igpu Edited June 10, 2023 by mariosun Link to comment Share on other sites More sharing options...
cankiulascmnfye Posted June 10, 2023 Share Posted June 10, 2023 Still works 1 Link to comment Share on other sites More sharing options...
chris1111 Posted June 10, 2023 Share Posted June 10, 2023 @Slice complete Sonoma Icon Done Thanks 2 Link to comment Share on other sites More sharing options...
Matgen84 Posted June 10, 2023 Share Posted June 10, 2023 17 minutes ago, chris1111 said: @Slice complete Sonoma Icon Done Thanks @chris1111 can't build last commit df8fd2 ! Spoiler Copying $EDK_TOOLS_PATH/Conf/target.template to /Users/mathieu/src/Cloverbootloader/Conf/target.txt Build environment: macOS-12.6.6-x86_64-i386-64bit Build start time: 16:14:58, Jun.10 2023 WORKSPACE = /Users/mathieu/src/Cloverbootloader EDK_TOOLS_PATH = /Users/mathieu/src/Cloverbootloader/BaseTools CONF_PATH = /Users/mathieu/src/Cloverbootloader/Conf PYTHON_COMMAND = python3 Processing meta-data ... done! build.py... : error C0DE: Unknown fatal error when processing [/Users/mathieu/src/Cloverbootloader/OpenCorePkg/Library/OcDebugLogLibOc2Clover/OcDebugLogLibOc2Clover.inf [X64, XCODE8, RELEASE]] (Please send email to devel@edk2.groups.io for help, attaching following call stack trace!) (Python 3.11.2 on darwin) Traceback (most recent call last): File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 1388, in _BuildPa RemoveDirectory(AutoGenObject.BuildDir, True) File "/Users/mathieu/src/Cloverbootloader/BaseTools/Source/Python/Common/Misc.py", line 439, in RemoveDirectory RemoveDirectory(File, Recursively) File "/Users/mathieu/src/Cloverbootloader/BaseTools/Source/Python/Common/Misc.py", line 443, in RemoveDirectory os.rmdir(Directory) File "/Users/mathieu/src/Cloverbootloader/BaseTools/Source/Python/Common/LongFilePathOs.py", line 33, in rmdir return os.rmdir(LongFilePath(path)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ OSError: [Errno 66] Directory not empty: 'X64' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 2695, in Main MyBuild.Launch() File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 2488, in Launch self._BuildPlatform() File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 1823, in _BuildPlatform self._BuildPa(self.Target, Pa, FfsCommand=CmdListDict,PcdMaList=PcdMaList) File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 1389, in _BuildPa except WindowsError as X: ^^^^^^^^^^^^ NameError: name 'WindowsError' is not defined - Failed - Link to comment Share on other sites More sharing options...
chris1111 Posted June 10, 2023 Share Posted June 10, 2023 12 minutes ago, Matgen84 said: @chris1111 can't build last commit df8fd2 ! Reveal hidden contents Copying $EDK_TOOLS_PATH/Conf/target.template to /Users/mathieu/src/Cloverbootloader/Conf/target.txt Build environment: macOS-12.6.6-x86_64-i386-64bit Build start time: 16:14:58, Jun.10 2023 WORKSPACE = /Users/mathieu/src/Cloverbootloader EDK_TOOLS_PATH = /Users/mathieu/src/Cloverbootloader/BaseTools CONF_PATH = /Users/mathieu/src/Cloverbootloader/Conf PYTHON_COMMAND = python3 Processing meta-data ... done! build.py... : error C0DE: Unknown fatal error when processing [/Users/mathieu/src/Cloverbootloader/OpenCorePkg/Library/OcDebugLogLibOc2Clover/OcDebugLogLibOc2Clover.inf [X64, XCODE8, RELEASE]] (Please send email to devel@edk2.groups.io for help, attaching following call stack trace!) (Python 3.11.2 on darwin) Traceback (most recent call last): File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 1388, in _BuildPa RemoveDirectory(AutoGenObject.BuildDir, True) File "/Users/mathieu/src/Cloverbootloader/BaseTools/Source/Python/Common/Misc.py", line 439, in RemoveDirectory RemoveDirectory(File, Recursively) File "/Users/mathieu/src/Cloverbootloader/BaseTools/Source/Python/Common/Misc.py", line 443, in RemoveDirectory os.rmdir(Directory) File "/Users/mathieu/src/Cloverbootloader/BaseTools/Source/Python/Common/LongFilePathOs.py", line 33, in rmdir return os.rmdir(LongFilePath(path)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ OSError: [Errno 66] Directory not empty: 'X64' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 2695, in Main MyBuild.Launch() File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 2488, in Launch self._BuildPlatform() File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 1823, in _BuildPlatform self._BuildPa(self.Target, Pa, FfsCommand=CmdListDict,PcdMaList=PcdMaList) File "/Users/mathieu/src/Cloverbootloader/BaseTools/BinWrappers/PosixLike/../../Source/Python/build/build.py", line 1389, in _BuildPa except WindowsError as X: ^^^^^^^^^^^^ NameError: name 'WindowsError' is not defined - Failed - The build is not complete Wait for completed See 1 Link to comment Share on other sites More sharing options...
Matgen84 Posted June 10, 2023 Share Posted June 10, 2023 10 minutes ago, chris1111 said: The build is not complete Wait for completed See Thanks. "Some checks haven’t completed yet" if I click Orange dot. But if I git clone a new repo before the task end, I can build with no issue. Strange, I don't understand why. Now checking is finished. I can build from my previous repo. 1 Link to comment Share on other sites More sharing options...
Recommended Posts