linuxOS_D21X/package/third-party/initscripts/init.d/S00_show_boot_time

8 lines
171 B
Plaintext
Raw Normal View History

2024-11-29 08:13:19 +00:00
#!/bin/sh
GTC_TICK=`devmem 0x19050008`
BTIME_S=`echo "scale=6;$((GTC_TICK)) / 4000000" | bc`
echo "Startup time: $(printf "%.3f" ${BTIME_S}) sec (from Power-On-Reset)"