Mercurial > hg > aboriginal
view sources/toys/gen_initramfs_list.sh @ 772:7cb6ef2cdf10
Busybox unstable currently needs this patch too.
author | Rob Landley <rob@landley.net> |
---|---|
date | Wed, 01 Jul 2009 18:02:44 -0500 |
parents | 1277d5ae4507 |
children |
line wrap: on
line source
#!/bin/bash if [ ! -d "$1" ] then echo "usage: gen_initramfs_list.sh dirname" >&2 exit 1 fi LEN=$(echo $1 | wc -c) find "$1" | while read i do PERM=$(stat -c %a "$i") NAME="$(echo $i | cut -b ${LEN}-)" [ -z "$NAME" ] && continue if [ -L "$i" ] then echo "slink $NAME $(readlink "$i") $PERM 0 0" elif [ -f "$i" ] then echo "file $NAME $i $PERM 0 0" elif [ -d "$i" ] then echo "dir $NAME $PERM 0 0" fi done