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

15 lines
375 B
Bash

#!/bin/sh
if [ -f /proc/device-tree/cpus/gtc-base ]; then
GTC_REG=`hexdump -C /proc/device-tree/cpus/gtc-base | awk -F ' ' '{print $2$3}'`
GTC_REG=0x${GTC_REG}0008
else
GTC_REG=0x19050008
fi
GTC_TICK=`devmem $GTC_REG`
BTIME_S=`echo "scale=6;$((GTC_TICK)) / 4000000" | bc`
echo "Startup time: $(printf "%.3f" ${BTIME_S}) sec (from Power-On-Reset)"