We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While turning on persistent JournalD to solve my problem, I noticed an unrelated warning message in early boot:
PinePhonePro kernel: Malformed early option 'console'
And indeed in the boot.pinephonepro.cmd source code of the boot script:
boot.pinephonepro.cmd
setenv bootargs loglevel=4 console=tty0 console=ttyS2,1500000 console=${console}
I presume, the initial intent was to do something along the lines of:
setenv console=tty0 console=ttyS2,1500000 setenv bootargs loglevel=4 console=tty0 console=ttyS2,1500000 console=${console}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While turning on persistent JournalD to solve my problem, I noticed an unrelated warning message in early boot:
And indeed in the
boot.pinephonepro.cmd
source code of the boot script:setenv bootargs loglevel=4 console=tty0 console=ttyS2,1500000 console=${console}
I presume, the initial intent was to do something along the lines of:
setenv console=tty0 console=ttyS2,1500000 setenv bootargs loglevel=4 console=tty0 console=ttyS2,1500000 console=${console}
The text was updated successfully, but these errors were encountered: