bcachefs-tools/initramfs

10 lines
167 B
Plaintext
Raw Normal View History

2010-10-08 18:04:49 +04:00
#!/bin/sh -e
2012-04-12 02:33:40 +04:00
for i in `ls /sys/dev/block/`; do
DEV=/tmp/bcache_dev
2010-10-08 18:04:49 +04:00
2012-04-12 02:33:40 +04:00
mknod $DEV b `echo $i|sed -e 's/:/ /'`
echo $DEV > /sys/fs/bcache/register_quiet
rm $DEV
done