diff options
author | Christian Hesse <mail@eworm.de> | 2021-01-28 10:18:56 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-01-28 10:18:56 +0100 |
commit | 8bfa2d4f0c5a7c898f5d6f3591e70282509882ac (patch) | |
tree | ad4fa41881a19b2e7314d0003654b9f77771db66 /hook/uname | |
parent | 980a4560a0803420c16b9f86a4bac4ecaeacd533 (diff) | |
download | mkinitcpio-uname-8bfa2d4f0c5a7c898f5d6f3591e70282509882ac.tar.gz mkinitcpio-uname-8bfa2d4f0c5a7c898f5d6f3591e70282509882ac.tar.zst |
give iso version if available
Diffstat (limited to 'hook/uname')
-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 } |