PippoX0 Posted November 5, 2018 Share Posted November 5, 2018 Hint: How to patch Mojave's Combo Update to install on HFs+ If we wanna use macOSUpd10.14.x.pkg to upgrade our not Apfs system (i.e. HFs+ partition) we have to patch distribution file inside .pkg. 1) Expand .pkg pkgutil --expand /Users/username/Desktop/macOSUpd10.14.1.pkg /Users/username/Desktop/macOSUpd10.14.1 2) Edit distribution (we can use TextEdit ) FROM: function FileSystem1(prefix) { if (my.target.filesystem && my.target.filesystem.type == 'hfs') { return true; } return false; TO: function FileSystem1(prefix) { if (my.target.filesystem && my.target.filesystem.type == 'hfs') { return false; } return false; 3) Repack .pkg pkgutil --flatten /Users/username/Desktop/macOSUpd10.14.1 /Users/username/Desktop/macOSUpd10.14.1mod.pkg cheers 4 2 Link to comment https://www.insanelymac.com/forum/topic/336357-macosupd1014xpkg-fix-for-hfs/ Share on other sites More sharing options...
gengik84 Posted November 5, 2018 Share Posted November 5, 2018 hi...I have had the same idea see here https://github.com/Gengik84/HFS_ComboUpdate_Unlocker 4 2 Link to comment https://www.insanelymac.com/forum/topic/336357-macosupd1014xpkg-fix-for-hfs/#findComment-2645635 Share on other sites More sharing options...
semson Posted November 14, 2018 Share Posted November 14, 2018 Thank you both of you @gengik84 @PippoX0. It works for me was almost compromised changing to APFS using CCC. 1 Link to comment https://www.insanelymac.com/forum/topic/336357-macosupd1014xpkg-fix-for-hfs/#findComment-2647566 Share on other sites More sharing options...
Recommended Posts