diff options
author | Phil Blundell <philb@gnu.org> | 2004-09-03 08:14:13 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-09-03 08:14:13 +0000 |
commit | c921f6635df531dc99ae70633868188c1aa4a900 (patch) | |
tree | d1885e6a190c5977842e8c287914ecd474fa600f /hotplug | |
parent | f174486390dc70795fa1218df51f256cf48fa742 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into stealth.(none):/home/pb/oe/oe-packages
2004/09/03 09:14:04+01:00 (none)!pb
tweak module autoloading
2004/09/03 09:13:57+01:00 (none)!pb
add sleeve.agent and mmc.agent
BKrev: 413827d55wW8IQosB7-SBFgj75y4jA
Diffstat (limited to 'hotplug')
-rw-r--r-- | hotplug/files/mmc.agent | 0 | ||||
-rw-r--r-- | hotplug/files/sleeve.agent | 0 | ||||
-rw-r--r-- | hotplug/files/sleeve.rc | 0 | ||||
-rw-r--r-- | hotplug/hotplug_20040329.oe | 8 |
4 files changed, 6 insertions, 2 deletions
diff --git a/hotplug/files/mmc.agent b/hotplug/files/mmc.agent new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/hotplug/files/mmc.agent diff --git a/hotplug/files/sleeve.agent b/hotplug/files/sleeve.agent new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/hotplug/files/sleeve.agent diff --git a/hotplug/files/sleeve.rc b/hotplug/files/sleeve.rc new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/hotplug/files/sleeve.rc diff --git a/hotplug/hotplug_20040329.oe b/hotplug/hotplug_20040329.oe index 98555cfdb8..444d732b65 100644 --- a/hotplug/hotplug_20040329.oe +++ b/hotplug/hotplug_20040329.oe @@ -6,8 +6,9 @@ SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/hotplug-2004_03_2 file://fix-net.agent \ file://update-usb.usermap \ file://logcheck-ignore" -S = "${WORKDIR}/hotplug-2004_03_29" -PR = "r1" +S = "${WORKDIR}/hotplug-2004_03_29 \ + file://sleeve.agent file://sleeve.rc file://mmc.agent" +PR = "r2" INITSCRIPT_NAME = "hotplug" INITSCRIPT_PARAMS = "start 40 S . stop 89 0 6 ." @@ -35,4 +36,7 @@ do_install () { sh ${WORKDIR}/fix-net.agent ${D} install -m 0755 ${WORKDIR}/update-usb.usermap ${D}/${oldsbindir}/ install -m 0644 ${WORKDIR}/logcheck-ignore ${D}/${sysconfdir}/logcheck/ignore.d/hotplug + install -m 0755 ${WORKDIR}/sleeve.agent ${D}${sysconfdir}/hotplug/ + install -m 0755 ${WORKDIR}/sleeve.rc ${D}${sysconfdir}/hotplug/ + install -m 0755 ${WORKDIR}/mmc.agent ${D}${sysconfdir}/hotplug/ } |