[patch] new option for syslogd to include year in log timestamps

2012-03-22 Thread Joshua Judson Rosen
Attached is a patch adding a config-option to have syslogd include the year in the timestamps that it writes. I've found that this is useful for long-running systems that don't have a sysadmin watching them most of the time. Probably other people would also find it useful. -- "Don't be afraid to

hostname applet appends useless space

2012-03-22 Thread Robert Schumann
Heyho guys, one small bug again :) [jazz@laptux ~]$ echo ">$(hostname -i)<" >192.168.2.21< [jazz@laptux ~]$ echo ">$(busybox hostname -i)<" >192.168.2.21 < Cheers Robert ___ busybox mailing list busybox@busybox.net http://lists.busybox.net/mailman/lis

[PATCH 1/2] e2fsprogs: Match e2fs_defs.h up with Linux kernel

2012-03-22 Thread Thierry Reding
This commit renames the EXT2_FEATURE_COMPAT_RESIZE_INODE constant to EXT2_FEATURE_COMPAT_RESIZE_INO to match the exported ext2_fs.h Linux kernel header and which is in fact used in the mkfs_ext2 applet. This commit is a prerequisite for a follow up patch which removes usage of the exported Linux k

[PATCH 2/2] e2fsprogs: Do not use linux/ext2_fs.h header

2012-03-22 Thread Thierry Reding
This header should not be used by user space programs and in fact will probably no longer be exported in future versions of the Linux kernel. See this thread for reference: https://lkml.org/lkml/2012/3/21/516 All required definitions are already contained in busybox' own copy of this head