28 January 2020
Sometimes it can be useful disabling CPU cores for testing purposes, for example, if you want to test an application under single-core use. You can change settings within Open Firmware to make your system believe it has fewer processors than the number that are actually present.
You can create the same cpus
setting in NVRAM using the Open Firmware user interface. Once the setting is in NVRAM, the setting persists across system restarts.
To set the number of cpus
within Open Firmware, follow these steps:
boot-args
settings, enter the following command:cr boot-args type cr
printenv boot-args
will accomplish the same thing, but will output the hexadecimal value of each character in boot-args
rather than readable text.setenv boot-args cpus=1
boot-args
if you want to preserve it. For example, if the result of Step 2 was:debug=0x4 ok
The command would read:setenv boot-args debug=0x4 cpus=1
ok
response, continue booting your system with the mac-boot
command.
Comments
Mark
14 February 2025
Hi. I have a G4 TiBook DVI 800MHz that is reporting L3 issues on a self test. Other than that it seems to run fine. Can I disable the self test, so I dont get a popup on boot in Os9?
PermalinkGreystash - Admin
16 February 2025
Hi Mark,
You could try disabling the Memory Tests in the Memory control panel. This can be done by holding command + option while opening the control panel, which enables a hidden checkbox.
If that doesn't work you could try removing the Apple CPU Plugins from the System Folder > Extensions > Multiprocessing directory. Your system will still function without this but It may break some other functionality (e.g. variable processor speeds etc.). If that works there's a chance you could disable just the cache testing through ResEdit or a Hex Editor, but it may be difficult.
PermalinkPost a Comment