PippoX0 276 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 ArgenLant, jinbingmao, semson and 3 others 4 2 Link to post Share on other sites
gengik84 3,899 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 semson, foskvs, Cyberdevs and 3 others 4 2 Link to post Share on other sites
semson 8 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. gengik84 1 Link to post Share on other sites
Recommended Posts