mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-01-28 01:17:30 +01:00
mediatek: remove loglevel in bootargs
Some checks failed
Build Kernel / Build all affected Kernels (push) Waiting to run
Build all core packages / Build all core packages for selected target (push) Waiting to run
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Waiting to run
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Waiting to run
Build all core packages / Build all core packages for selected target (push) Waiting to run
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Waiting to run
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
`loglevel=8` causes the kernel to output all logs, including debug logs, at boot time It is enabled by default on the upstream eval board because it is aimed at developer debugging. Most devices reference the eval board directly without modification, and the debug log should be hidden at release Signed-off-by: Coia Prant <coiaprant@gmail.com> Link: https://github.com/openwrt/openwrt/pull/19714 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
3e09991c07
commit
e59635668d
6 changed files with 6 additions and 8 deletions
|
|
@ -10,9 +10,7 @@
|
|||
compatible = "unielec,u7981-01-emmc", "mediatek,mt7981";
|
||||
|
||||
chosen {
|
||||
bootargs = "console=ttyS0,115200n1 loglevel=8 \
|
||||
earlycon=uart8250,mmio32,0x11002000 \
|
||||
";
|
||||
bootargs = "console=ttyS0,115200n1 earlycon=uart8250,mmio32,0x11002000";
|
||||
};
|
||||
|
||||
gpio-keys {
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
chosen {
|
||||
stdout-path = "serial0:115200n8";
|
||||
bootargs = "earlycon=uart8250,mmio32,0x11002000 console=ttyS0,115200n8 loglevel=8";
|
||||
bootargs = "earlycon=uart8250,mmio32,0x11002000 console=ttyS0,115200n8";
|
||||
};
|
||||
|
||||
memory {
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
chosen {
|
||||
stdout-path = "serial0:115200n8";
|
||||
bootargs = "earlycon=uart8250,mmio32,0x11002000 console=ttyS0,115200n8 loglevel=8";
|
||||
bootargs = "earlycon=uart8250,mmio32,0x11002000 console=ttyS0,115200n8";
|
||||
};
|
||||
|
||||
memory {
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
chosen {
|
||||
stdout-path = &serial0;
|
||||
bootargs = "console=ttyS0,115200n1 loglevel=8 pci=pcie_bus_perf root=PARTLABEL=rootfs";
|
||||
bootargs = "console=ttyS0,115200n1 pci=pcie_bus_perf root=PARTLABEL=rootfs";
|
||||
};
|
||||
|
||||
memory {
|
||||
|
|
|
|||
|
|
@ -831,7 +831,7 @@ Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|||
+ "mediatek,mt7988a";
|
||||
+
|
||||
+ chosen {
|
||||
+ bootargs = "console=ttyS0,115200n1 loglevel=8 \
|
||||
+ bootargs = "console=ttyS0,115200n1 \
|
||||
+ earlycon=uart8250,mmio32,0x11000000 \
|
||||
+ pci=pcie_bus_perf";
|
||||
+ };
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ Subject: [PATCH 32/32] WIP: add BPi-R4
|
|||
/ {
|
||||
chosen {
|
||||
stdout-path = "serial0:115200n8";
|
||||
+ bootargs = "console=ttyS0,115200n1 loglevel=8 pci=pcie_bus_perf ubi.block=0,fit root=/dev/fit0";
|
||||
+ bootargs = "console=ttyS0,115200n1 pci=pcie_bus_perf ubi.block=0,fit root=/dev/fit0";
|
||||
+ rootdisk-spim-nand = <&ubi_rootfs>;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue