Skip to content
Snippets Groups Projects
Commit 770f6af0 authored by Jonas Höppner's avatar Jonas Höppner
Browse files

prepare-rtc: Fix file extension for overlays

The kernel now supports dtbo files, thus the overlays now use .dtbo as
extension. Adapt the script to select the correct files.
parent 30e18056
No related branches found
No related tags found
2 merge requests!418Integrate gitlab-ci/fix-gitlab-ci-integration and 6 more,!409Kirkstone prepare-rtc fix
......@@ -27,11 +27,11 @@ cd "$BOOTFILES_DIR" || exit 1
# RX8803
if poll_rtc 0x32; then
append_overlay "rx8803-overlay.dtb"
append_overlay "rx8803-overlay.dtbo"
else
# PCF8563
if poll_rtc 0x51; then
append_overlay "pcf8563-overlay.dtb"
append_overlay "pcf8563-overlay.dtbo"
else
echo "Error: Unable to find any valid device"
exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment