~ubuntu-branches/ubuntu/wily/bcache-tools/wily

« back to all changes in this revision

Viewing changes to initcpio/install

  • Committer: Package Import Robot
  • Author(s): Robie Basak
  • Date: 2014-09-29 10:13:58 UTC
  • Revision ID: package-import@ubuntu.com-20140929101358-49cxzqbrsi3d3l4c
Tags: upstream-1.0.7
ImportĀ upstreamĀ versionĀ 1.0.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
build() {
 
3
    add_module bcache
 
4
    add_binary /usr/lib/udev/bcache-register
 
5
    add_binary /usr/lib/udev/probe-bcache
 
6
    add_file /usr/lib/udev/rules.d/69-bcache.rules
 
7
}
 
8
help() {
 
9
    cat <<HELPEOF
 
10
This hook will auto-assemble bcache devices.
 
11
Requires the udev hook.
 
12
HELPEOF
 
13
}
 
14