summaryrefslogtreecommitdiffstats
path: root/hooks/memdisk
blob: e3ff345745dd8910cc7096f3c0425fc086ec9d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
# vim:set ft=sh:
run_hook ()
{
    MEMDISK=$(memdiskfind)
    if [ $? -eq 0 ]; then
        # We found a memdisk, set up phram
        modprobe phram phram=memdisk,${MEMDISK}
        # Load mtdblock, the memdisk will be /dev/mtdblock0
        modprobe mtdblock
    fi
}