* [OT] util-linux 2.13-pre1
@ 2005-08-02 23:07 Adrian Bunk
2005-08-04 10:08 ` Daniel Drake
2005-08-09 11:46 ` P
0 siblings, 2 replies; 5+ messages in thread
From: Adrian Bunk @ 2005-08-02 23:07 UTC (permalink / raw)
To: linux-kernel
util-linux 2.13-pre1 is available at
ftp://ftp.kernel.org/pub/linux/utils/util-linux/testing/util-linux-2.13-pre1.tar.gz
Changes:
* use GNU autoconf/automake/libtool for building
* added schedutils
* removed support for curses implementations other than ncurses
* removed programs: arch, passwd, rescuept, setfdprm
* removed mkminix-0.1/
* misc fixes and documentation updates
* new translation: vi
* updated translations: ca, de, fi, fr, it, nl, ru, tr
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [OT] util-linux 2.13-pre1
2005-08-02 23:07 [OT] util-linux 2.13-pre1 Adrian Bunk
@ 2005-08-04 10:08 ` Daniel Drake
2005-08-09 19:49 ` Adrian Bunk
2005-08-09 11:46 ` P
1 sibling, 1 reply; 5+ messages in thread
From: Daniel Drake @ 2005-08-04 10:08 UTC (permalink / raw)
To: Adrian Bunk; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 258 bytes --]
Adrian,
Adrian Bunk wrote:
> util-linux 2.13-pre1 is available at
> ftp://ftp.kernel.org/pub/linux/utils/util-linux/testing/util-linux-2.13-pre1.tar.gz
Any comments on the mount patch I sent to you?
Attaching it again now. Please apply.
Thanks,
Daniel
[-- Attachment #2: util-linux-mount-umask.patch --]
[-- Type: text/x-patch, Size: 962 bytes --]
From: Daniel Drake <dsd@gentoo.org>
Some filesystems such as FAT will default to using the umask of the current
process if the user did not specify a umask option.
Currently, mount.c calls umask(022) early on, removing the possibility of the
user-specified umask (at shell level) being used by default.
Removing the umask(022) call solves the problem.
This appears safe to do, because the code which creates files already does this
safely (saves umask, sets umask 022, creates file, restores umask).
Please apply.
--- util-linux-2.13-pre1/mount/mount.c.orig 2005-08-04 11:00:50.000000000 +0100
+++ util-linux-2.13-pre1/mount/mount.c 2005-08-04 11:00:58.000000000 +0100
@@ -1466,8 +1466,6 @@ main(int argc, char *argv[]) {
if ((p = strrchr(progname, '/')) != NULL)
progname = p+1;
- umask(022);
-
/* People report that a mount called from init without console
writes error messages to /etc/mtab
Let us try to avoid getting fd's 0,1,2 */
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [OT] util-linux 2.13-pre1
2005-08-02 23:07 [OT] util-linux 2.13-pre1 Adrian Bunk
2005-08-04 10:08 ` Daniel Drake
@ 2005-08-09 11:46 ` P
2005-08-09 15:26 ` Adrian Bunk
1 sibling, 1 reply; 5+ messages in thread
From: P @ 2005-08-09 11:46 UTC (permalink / raw)
To: Adrian Bunk; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 607 bytes --]
Adrian Bunk wrote:
> util-linux 2.13-pre1 is available at
> ftp://ftp.kernel.org/pub/linux/utils/util-linux/testing/util-linux-2.13-pre1.tar.gz
You missed my fixes to cal to fix a possible crash bug
for certain terminal types, and to fix date alignment
issues for certain dates. I've rediffed the attached
patched against 2.13-pre1.
Also schedutils build is breaking on redhat 9.
This really is messy but should be handled.
http://mail.linux.ie/pipermail/ilug/2004-November/019784.html
API changes in same minor version of glibc should just not happen.
--
Pa'draig Brady - http://www.pixelbeat.org
--
[-- Attachment #2: cal-2.13-pre1-highlight.diff --]
[-- Type: application/x-texinfo, Size: 2121 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [OT] util-linux 2.13-pre1
2005-08-09 11:46 ` P
@ 2005-08-09 15:26 ` Adrian Bunk
0 siblings, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2005-08-09 15:26 UTC (permalink / raw)
To: P; +Cc: linux-kernel
On Tue, Aug 09, 2005 at 12:46:58PM +0100, P@draigBrady.com wrote:
> Adrian Bunk wrote:
> >util-linux 2.13-pre1 is available at
> > ftp://ftp.kernel.org/pub/linux/utils/util-linux/testing/util-linux-2.13-pre1.tar.gz
>
> You missed my fixes to cal to fix a possible crash bug
> for certain terminal types, and to fix date alignment
> issues for certain dates. I've rediffed the attached
> patched against 2.13-pre1.
Yes sorry, this patch is still part of the big batch of util-linux
emails I have to go through.
> Also schedutils build is breaking on redhat 9.
> This really is messy but should be handled.
> http://mail.linux.ie/pipermail/ilug/2004-November/019784.html
> API changes in same minor version of glibc should just not happen.
The URL seems to be invalid, but I know what you are talking about, and
a fix is already on my TODO list to be implemented before the final 2.13
release.
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [OT] util-linux 2.13-pre1
2005-08-04 10:08 ` Daniel Drake
@ 2005-08-09 19:49 ` Adrian Bunk
0 siblings, 0 replies; 5+ messages in thread
From: Adrian Bunk @ 2005-08-09 19:49 UTC (permalink / raw)
To: Daniel Drake; +Cc: linux-kernel
On Thu, Aug 04, 2005 at 11:08:20AM +0100, Daniel Drake wrote:
> Adrian,
Hi Daniel,
> Adrian Bunk wrote:
> >util-linux 2.13-pre1 is available at
> > ftp://ftp.kernel.org/pub/linux/utils/util-linux/testing/util-linux-2.13-pre1.tar.gz
>
> Any comments on the mount patch I sent to you?
>...
sorry, this patch is still part of the big batch of util-linux emails I
have to go through.
> Thanks,
> Daniel
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-08-09 19:49 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-02 23:07 [OT] util-linux 2.13-pre1 Adrian Bunk
2005-08-04 10:08 ` Daniel Drake
2005-08-09 19:49 ` Adrian Bunk
2005-08-09 11:46 ` P
2005-08-09 15:26 ` Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox