summaryrefslogtreecommitdiff
path: root/scripts/functions
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2005-10-26 09:05:53 +0200
committermaximilian attems <maks@debian.org>2005-10-26 09:05:53 +0200
commita62c8eadea176cc83f83cf1eeeca4aabe59e5a95 (patch)
tree7875d85a0a424aaffec5080c12c35f0373e9638b /scripts/functions
parent2002749a483fabac4b0ee32256bd937a1d9effd6 (diff)
downloadinitramfs-tools-a62c8eadea176cc83f83cf1eeeca4aabe59e5a95.tar.gz
initramfs-tools-a62c8eadea176cc83f83cf1eeeca4aabe59e5a95.zip
fix stat usage, which is no longer available in newer busybox.
use awk instead for determinig major_minor. great patch cures a hang observed on one of my laptops. :-) patch from Adrian Bridgett <adrian@smop.co.uk>, #335801.
Diffstat (limited to 'scripts/functions')
-rw-r--r--scripts/functions6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/functions b/scripts/functions
index 68cfcea..8e82896 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -227,9 +227,9 @@ load_modules()
if [ -e /sys/power/resume ]; then
if [ -e "${resume}" ]; then
- major=$((0x$(stat -c%t ${resume})))
- minor=$((0x$(stat -c%T ${resume})))
- echo ${major}:${minor} >/sys/power/resume
+ major_minor=$(ls -l ${resume} | \
+ awk '{printf "0x%x:0x%x", $5, $6}')
+ echo $major_minor >/sys/power/resume
fi
fi