-
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.
Signed-off-by: Ruixi Zhou <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,8 @@ echo -e "\033[31mRemove /etc/NetworkManager/system-connections/*\033[0m" | |
[ "$(ls -A /etc/NetworkManager/system-connections/)" ] && rm /etc/NetworkManager/system-connections/* | ||
echo -e "\033[31mDisable wifibroadcast.service [email protected]\033[0m" | ||
systemctl disable wifibroadcast.service [email protected] | ||
echo -e "\033[31mcopy gs.sh wfb.sh stream.sh fan.sh button.sh rk3566-dwc3-otg-role-switch.dts to ${install_dir}/\033[0m" | ||
chmod +x gs.sh wfb.sh stream.sh fan.sh button.sh && cp gs.sh wfb.sh stream.sh fan.sh button.sh rk3566-dwc3-otg-role-switch.dts ${install_dir}/ | ||
echo -e "\033[31mcopy gs.sh wfb.sh stream.sh fan.sh button.sh rk3566-dwc3-otg-role-switch.dts rk3566-hdmi-max-resolution-4k.dts to ${install_dir}/\033[0m" | ||
chmod +x gs.sh wfb.sh stream.sh fan.sh button.sh && cp gs.sh wfb.sh stream.sh fan.sh button.sh rk3566-dwc3-otg-role-switch.dts rk3566-hdmi-max-resolution-4k.dts ${install_dir}/ | ||
echo -e "\033[31mcopy gs.conf to /config/gs.conf\033[0m" | ||
cp gs.conf /config/ | ||
echo -e "\033[31mcopy gs.service to /etc/systemd/system/\033[0m" | ||
|
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,19 @@ | ||
/dts-v1/; | ||
|
||
/ { | ||
metadata { | ||
title = "Set maximum monitor resolution to 3840x2160"; | ||
category = "misc"; | ||
description = "Set maximum monitor resolution to 4K."; | ||
compatible = "radxa,rock-3a\0radxa,rock-3b\0radxa,e25"; | ||
}; | ||
|
||
fragment@0 { | ||
target-path = "/hdmi@fe0a0000"; | ||
__overlay__ { | ||
preset_max_hdisplay = <3840>; | ||
preset_max_vdisplay = <2160>; | ||
}; | ||
}; | ||
}; | ||
|