aboutsummaryrefslogtreecommitdiffstats
path: root/hook/uname
blob: 58fda04f076c8a3fa9484e9f6c55d1d72a02742d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

run_latehook() {
	if [ -s /new_root/version ]; then
		echo " Booting $(cat /new_root/version) with $(uname -srm)."
	else
		echo " Booting $(uname -srm)."
	fi
	echo
}