forked from freifunk-gluon/gluon
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v2021.1.x' into v2021.1.x-tecff
- Loading branch information
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From: Nico Boehr <[email protected]> | ||
Date: Sat, 7 May 2022 08:39:05 +0200 | ||
Subject: ath79: Joy-IT OR750i: fix UART | ||
|
||
The serial console defaults to disabled in the DTSI files, explicitly | ||
enable it for the Joy-IT OR750i, so we can get a console in linux. | ||
|
||
Signed-off-by: Nico Boehr <[email protected]> | ||
|
||
diff --git a/target/linux/ath79/dts/qca9531_joyit_jt-or750i.dts b/target/linux/ath79/dts/qca9531_joyit_jt-or750i.dts | ||
index 60fa922878355ebdaf7d2983fe926efdf8b97207..042348d82c479c097f534f0bf2bb383ace55e02d 100644 | ||
--- a/target/linux/ath79/dts/qca9531_joyit_jt-or750i.dts | ||
+++ b/target/linux/ath79/dts/qca9531_joyit_jt-or750i.dts | ||
@@ -121,3 +121,7 @@ | ||
|
||
mtd-cal-data = <&art 0x1000>; | ||
}; | ||
+ | ||
+&uart { | ||
+ status = "okay"; | ||
+}; |