linuxOS_D21X/package/third-party/initscripts/init.d/S00_show_boot_time
2024-11-29 16:13:46 +08:00

8 lines
171 B
Bash

#!/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)"