Domanda

I have a Mac mini 2020 (with the Apple Silicon M1 chip).

I want it to boot up in verbose mode, i.e. the details of the boot process should be logged as text on the screen during bootup.

The following command is recommended by several articles:

sudo nvram boot-args="-v"

And this does indeed work fine on my Macbook Pro 2018 and Mac mini 2018, however, it seems to do nothing on my Mac mini 2020.

I have confirmed using nvram -p (and System Information) that the boot-args property is indeed set to -v, but it has no effect.

Is there some way to get this to work?

È stato utile?

Soluzione

In the past, verbose mode showed on the screen information that was logged by the kernel processes to traditional files. Also in the past, the logging system was overhauled to write these logs to a database first so they can be queried and some but not all of the logs end up in files.

Now, you can’t see the messages on screen and have to either know which files contain portions of the logged messages or query the database directly after the system has started (or indirectly if the system never completes startup).

Addressing the “what changed” with Apple Silicon is Apple completed the transition to all machines running under a T2 with a Secure Enclave and other architectural changes to the startup process. Some of these were present in Intel, but legacy behavior remained while Intel was executing the kernel code.

The old non-volatile ram commands don’t “work” on Apple Silicon.

Your diagnosis is correct - the store still sets values, but the system doesn’t take any action or read them at boot as far as I can tell.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a apple.stackexchange
scroll top