hal/tools fstab-sync.c,1.29,1.30
David Zeuthen
david at freedesktop.org
Thu Feb 10 09:04:00 PST 2005
- Previous message: hal ChangeLog,1.409,1.410
- Next message: hal/hald/linux2 blockdev.c, 1.2, 1.3 blockdev.h, 1.1, 1.2 hotplug.c,
1.9, 1.10 osspec.c, 1.11, 1.12
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvs/hal/hal/tools
In directory gabe:/tmp/cvs-serv28549/tools
Modified Files:
fstab-sync.c
Log Message:
2005-02-10 David Zeuthen <davidz at redhat.com>
* volume_id/fat.c (volume_id_probe_vfat): Must have been a typo by Kay,
changed from VOLUME_ID_DISKLABEL to VOLUME_ID_FILESYSTEM.
* tools/fstab-sync.c (remove_udi): Remember to init the DBusError since
some operations may fail.
(main): Look at $HALD_ACTION for add, remove instead of first
positional parameter $1.
* hald/linux2/probing/probe-volume.c: New file
* hald/linux2/probing/probe-storage.c: New file
* hald/linux2/probing/linux_dvd_rw_utils.[ch]: New files (imported
from hal-0.4.x)
* hald/linux2/probing/Makefile.am: Add rules for hald-probe-storage
and hald-probe-volume
* hald/linux2/addons/addon-storage.c: New file
* hald/linux2/addons/Makefile.am: Add rules for hald-addon-storage
* hald/linux2/osspec.c (sigio_handler): New function
(sigio_iochn_data): New function
(osspec_init): Set up signal handler for SIGIO and the neccesary
pipes to handle it safely. Set up directory watcher for /etc and
invoke blockdev_mtab_changed whenever that happens
* hald/linux2/hotplug.c (hotplug_rescan_device): Call blockdev_*
if appropriate
* hald/linux2/blockdev.h: Add some new prototype for interacting
with hotplug.c (much like what physdev.h and classdev.h)
exported. Also add the prototype for a new function
blockdev_mtab_changed.
* hald/linux2/blockdev.c: Actually put some code here (the previous
code was just boiler plate).
* hald/util.h (struct HalHelperData_s): Add boolean already_issued_
callback
* hald/util.c (hal_util_get_string_from_file): Truncate whitespace
from string read
(hal_util_terminate_helper): Don't remove the child watcher source,
but set a flag that we already did the callback and helper_child_exited
will reap the child (including removing sources). This helps reap the
zombies I've been seeing.
(helper_child_timeout): -do-
(helper_child_exited): Only do callback if we haven't already done
so.
* hald/debug-hald.sh: Another nice script for running gdb on hald;
just run this script and invoke the run command from the gdb console.
* hald/run-hald.sh: Also export ../tools so we can get fstab-sync
going. Set HAL_FDI_SOURCE
* hald/device_info.c (di_search_and_merge): Respect the env
var HAL_FDI_SOURCE which is useful for development as hald will
read you local .fdi files
* fdi/90defaultpolicy/storage-policy.fdi: Temporarily add
fstab-sync add/rem callouts (mental note: move to other file
soon); also add the media detection addon
* fdi/90defaultpolicy/power-mgmt-policy.fdi: New file
* fdi/90defaultpolicy/Makefile.am (fdi90defaultpolicydir): Add
power-mgmt-policy.fdi
Index: fstab-sync.c
===================================================================
RCS file: /cvs/hal/hal/tools/fstab-sync.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- fstab-sync.c 31 Jan 2005 20:06:41 -0000 1.29
+++ fstab-sync.c 10 Feb 2005 17:03:57 -0000 1.30
@@ -1414,7 +1414,6 @@
DBusError error;
dbus_error_init (&error);
-
is_volume = libhal_device_query_capability (hal_context, udi, "volume", &error);
/* don't remove the fstab entry if we were spawned of a device with
@@ -1422,9 +1421,11 @@
* exactly when block.no_partitions is TRUE on the volume. E.g.
* floppies and optical discs
*/
+ dbus_error_init (&error);
if (is_volume && libhal_device_get_property_bool (hal_context, udi, "block.no_partitions", &error))
return FALSE;
+ dbus_error_init (&error);
block_device = libhal_device_get_property_string (hal_context, udi, "block.device", &error);
dir = strdup (_PATH_FSTAB);
@@ -1702,7 +1703,9 @@
hal_device_udi = getenv ("UDI");
if (hal_device_udi != NULL) {
char *caps;
-
+ char *action;
+
+
/* when invoked for the /org/freedesktop/Hal/devices/computer UDI we clean the fstab */
if (getenv ("HALD_STARTUP") != NULL && strcmp (hal_device_udi, "/org/freedesktop/Hal/devices/computer") == 0) {
should_clean = TRUE;
@@ -1729,6 +1732,13 @@
}
}
+ if ((action = getenv ("HALD_ACTION")) != NULL) {
+ if (strcmp (action, "add") == 0)
+ udi_to_add = hal_device_udi;
+ else if (strcmp (action, "remove") == 0)
+ udi_to_remove = hal_device_udi;
+ }
+
/* we don't want to remove entries just because hald is shutting down */
if (getenv ("HALD_SHUTDOWN") != NULL)
goto out;
- Previous message: hal ChangeLog,1.409,1.410
- Next message: hal/hald/linux2 blockdev.c, 1.2, 1.3 blockdev.h, 1.1, 1.2 hotplug.c,
1.9, 1.10 osspec.c, 1.11, 1.12
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the hal-commit
mailing list