aboutsummaryrefslogtreecommitdiffstats
path: root/hook/uname
blob: 34858e42aa25cc3513e3d1560084067b46b83f58 (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
}