diff options
Diffstat (limited to 'hook')
-rw-r--r-- | hook/uname | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,10 @@ #!/bin/sh -run_earlyhook() { - echo " Booting $(uname -srm)." +run_latehook() { + if [ -s /new_root/version ]; then + echo " Booting $(cat /new_root/version) with $(uname -srm)." + else + echo " Booting $(uname -srm)." + fi echo } |