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
Running Sensly installer replaces boot parameters in Raspi's cmdline.txt file while installer is runningUart_enable.sh.
cmdline.txt
Uart_enable.sh
This is bad, because cmdline may have custom modifications and removing them may make Raspi inaccessible.
A suggestion, instead:
echo "dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait quiet splash plymouth.ignore-serial-consoles" >> /boot/cmdline.txt sed -i -e '1s/^/#/' /boot/cmdline.txt
https://github.com/Altitude-Tech/Sensly_Install/blob/d1fe3bbe0dd4055a0a13e7c8399043a8ddae1b85/Uart_enable.sh#L5,L6
The text was updated successfully, but these errors were encountered:
Or at least ask user before overriding cmdline, so user can manually modify parameters, if she/he wants.
Sorry, something went wrong.
No branches or pull requests
Running Sensly installer replaces boot parameters in Raspi's
cmdline.txt
file while installer is runningUart_enable.sh
.This is bad, because cmdline may have custom modifications and removing them may make Raspi inaccessible.
A suggestion, instead:
https://github.com/Altitude-Tech/Sensly_Install/blob/d1fe3bbe0dd4055a0a13e7c8399043a8ddae1b85/Uart_enable.sh#L5,L6
The text was updated successfully, but these errors were encountered: