summaryrefslogtreecommitdiffstats
path: root/install/ide
blob: cd9625a5cbb92f8b1c9f8a5758669cc0098c56ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# vim: set ft=sh:

install ()
{
    MODULES=""
    for m in $(all_modules "/ide/");
    do
        MODULES="$MODULES $(basename $m)"
    done
    BINARIES=""
    FILES=""
    SCRIPT="ide"
}

help ()
{
cat<<HELPEOF
  This hook loads the necessary modules for an ide root device.
  Detection will take place at runtime. To minimize the modules
  in the image, use the -auto flavor.
HELPEOF
}