mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-23 15:41:22 +02:00
Commit 4b2be78ab66c ("time: Fix get_ticks being non-monotonic") has broken boot on chiliboard platform, as it requires '/chosen/tick-timer' in device-tree. This resulted in following panic message: Could not initialize timer (err -19) Provide missing chosen property in device-tree to fix chiliboard support. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
15 lines
285 B
Plaintext
15 lines
285 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+ or X11
|
|
/*
|
|
* Copyright (C) 2018-2021 Grinn Sp. z o.o. -- http://www.grinn-global.com/
|
|
* Author: Marcin Niestroj <m.niestroj@grinn-global.com>
|
|
*/
|
|
|
|
#include "am33xx-u-boot.dtsi"
|
|
|
|
/ {
|
|
chosen {
|
|
stdout-path = &uart0;
|
|
tick-timer = &timer2;
|
|
};
|
|
};
|