diff options
author | Doug Kehn <rdkehn@yahoo.com> | 2015-07-17 16:08:32 -0500 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-09-10 14:29:18 +0200 |
commit | 4c6f0f30bbb11b7ce0899f7545c73fd9e32070bc (patch) | |
tree | 92c53957c16c383c4ee94a549cd4b2686fd2c0e3 /package/usbmount | |
parent | 6cac59f8a360dc333828d5f37977d6fcd478f9b8 (diff) | |
download | buildroot-4c6f0f30bbb11b7ce0899f7545c73fd9e32070bc.tar.gz buildroot-4c6f0f30bbb11b7ce0899f7545c73fd9e32070bc.zip |
package/usbmount: run-parts directory fix
usbmount.mk created/installed run-parts scripts in
/etc/usbmount/usbmount.d. However, usbmount executes run-parts on
/etc/usbmount/mount.d for UDEV add action and on /etc/usbmount/umount.d
for UDEV remove action. Change usbmount.mk to create the directories
referenced by usbmount and install the run-parts scripts appropriately.
Signed-off-by: Doug Kehn <rdkehn@yahoo.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/usbmount')
-rw-r--r-- | package/usbmount/usbmount.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/usbmount/usbmount.mk b/package/usbmount/usbmount.mk index 9e893c8d8b..066cbb828a 100644 --- a/package/usbmount/usbmount.mk +++ b/package/usbmount/usbmount.mk @@ -15,9 +15,9 @@ define USBMOUNT_INSTALL_TARGET_CMDS $(INSTALL) -m 0755 -D $(@D)/usbmount $(TARGET_DIR)/usr/share/usbmount/usbmount $(INSTALL) -m 0755 -D $(@D)/00_create_model_symlink \ - $(TARGET_DIR)/etc/usbmount/usbmount.d/00_create_model_symlink + $(TARGET_DIR)/etc/usbmount/mount.d/00_create_model_symlink $(INSTALL) -m 0755 -D $(@D)/00_remove_model_symlink \ - $(TARGET_DIR)/etc/usbmount/usbmount.d/00_remove_model_symlink + $(TARGET_DIR)/etc/usbmount/umount.d/00_remove_model_symlink $(INSTALL) -m 0644 -D $(@D)/usbmount.rules $(TARGET_DIR)/lib/udev/rules.d/usbmount.rules $(INSTALL) -m 0644 -D $(@D)/usbmount.conf $(TARGET_DIR)/etc/usbmount/usbmount.conf |