start next

This commit is contained in:
IgnorantGuru 2012-08-15 10:28:06 -06:00
parent 6a28ed8db9
commit 8a94d3c90d
7 changed files with 23 additions and 21 deletions

View File

@ -1,3 +1,5 @@
0.3.2+
0.3.2 2012-08-15:
accept smb workgroup/user
curlftpfs pass user:pass as option

28
README
View File

@ -1,4 +1,4 @@
README for udevil v0.3.2 BETA TEST VERSION
README for udevil v0.3.2+ BETA TEST VERSION
THIS IS A TEST RELEASE - USE AT YOUR OWN RISK.
@ -268,15 +268,25 @@ ENABLE KERNEL POLLING
If you get 0 or -1 from those commands, then it's probably disabled.
TO ENABLE KERNEL POLLING TEMPORARILY, enable common polling for the block
module:
TO ENABLE KERNEL POLLING PERMANENTLY (survives a reboot), add this command
to your /etc/rc.local file (anywhere before the 'exit' line in that file):
sudo bash -c 'echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs'
echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs
Any number between 2000 and 5000 (milliseconds) should be reasonable - the
higher 5000 means poll every 5 seconds, which is less overhead but a little
slower.
OR you can pass this option to the kernel boot command line in grub:
block.events_dfl_poll_msecs=2000
TO ENABLE KERNEL POLLING TEMPORARILY, enable common polling for the block
module:
sudo bash -c 'echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs'
OR you can enable polling just for a single device like this (/dev/sr0 in
this example):
@ -286,16 +296,6 @@ ENABLE KERNEL POLLING
button on the drive should work normally again. However, the above changes
will be lost when you reboot.
TO MAKE POLLING PERMANENT (survives a reboot), add one of the above
commands to your /etc/rc.local file (anywhere before the 'exit' line in
that file), like this (without the sudo):
echo 2000 > /sys/module/block/parameters/events_dfl_poll_msecs
OR you can pass this option to the kernel boot command line in grub:
block.events_dfl_poll_msecs=2000
References:
http://www.mail-archive.com/lfs-dev@linuxfromscratch.org/msg15714.html
http://blogs.gentoo.org/mgorny/2011/06/20/uam-can-now-mount-cds-and-dvds/

2
configure vendored
View File

@ -2748,7 +2748,7 @@ fi
# Define the identity of the package.
PACKAGE=udevil
VERSION=0.3.2
VERSION=0.3.2+
cat >>confdefs.h <<_ACEOF

View File

@ -3,7 +3,7 @@ AC_PREREQ(2.52)
AC_INIT(src/udevil.c)
AM_CONFIG_HEADER(config.h)
AC_CONFIG_SRCDIR(src)
AM_INIT_AUTOMAKE(udevil, 0.3.2)
AM_INIT_AUTOMAKE(udevil, 0.3.2+)
AC_PROG_INTLTOOL([0.21])

4
debian/changelog vendored
View File

@ -1,5 +1,5 @@
udevil (0.3.2-1) unstable; urgency=low
udevil (0.3.2+-1) unstable; urgency=low
* release
-- IgnorantGuru <ignorantguru@gmx.com> Wed, 15 Aug 2012 16:20:53 +0000
-- IgnorantGuru <ignorantguru@gmx.com> Wed, 15 Aug 2012 16:25:09 +0000

View File

@ -19,7 +19,7 @@
GETTEXT_PACKAGE = udevil
PACKAGE = udevil
VERSION = 0.3.2
VERSION = 0.3.2+
SHELL = /bin/bash
@ -28,7 +28,7 @@ top_srcdir = ..
top_builddir = ..
prefix = /usr/local
prefix = /usr
exec_prefix = ${prefix}
datadir = ${datarootdir}
datarootdir = ${prefix}/share

View File

@ -64,7 +64,7 @@
#define ALLOWED_TYPES "$KNOWN_FILESYSTEMS,smbfs,cifs,nfs,ftpfs,curlftpfs,sshfs,file,tmpfs,ramfs"
#define MAX_LOG_DAYS 60 // don't set this too high
//#define OPT_REMOVE // build with under-development remove function
#define OPT_REMOVE // build with under-development remove function
static int command_clean();