From 24995e91859cced3a4f85bc4b9a5534ef191db5b Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Mon, 12 Jan 2009 12:11:17 +0100 Subject: busybox: replace my mdev fix with upstream solution (svn r24785) --- packages/busybox/busybox-1.13.2/mdev-fix.patch | 31 -------------------------- packages/busybox/busybox-1.13.2/r24785.patch | 14 ++++++++++++ packages/busybox/busybox_1.13.2.bb | 4 ++-- 3 files changed, 16 insertions(+), 33 deletions(-) delete mode 100644 packages/busybox/busybox-1.13.2/mdev-fix.patch create mode 100644 packages/busybox/busybox-1.13.2/r24785.patch (limited to 'packages') diff --git a/packages/busybox/busybox-1.13.2/mdev-fix.patch b/packages/busybox/busybox-1.13.2/mdev-fix.patch deleted file mode 100644 index 115a5f42c6..0000000000 --- a/packages/busybox/busybox-1.13.2/mdev-fix.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- - util-linux/mdev.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - ---- busybox-1.13.2.orig/util-linux/mdev.c -+++ busybox-1.13.2/util-linux/mdev.c -@@ -107,11 +107,11 @@ static void make_device(char *path, int - - #if ENABLE_FEATURE_MDEV_CONF - parser = config_open2("/etc/mdev.conf", fopen_for_read); - - /* If we have config file, look up user settings */ -- while (config_read(parser, tokens, 4, 3, "# \t", PARSE_NORMAL)) { -+ while (config_read(parser, tokens, 5, 3, "# \t", PARSE_NORMAL)) { - regmatch_t off[1 + 9*ENABLE_FEATURE_MDEV_RENAME_REGEXP]; - char *val; - - /* Fields: regex uid:gid mode [alias] [cmd] */ - -@@ -210,10 +210,11 @@ static void make_device(char *path, int - #endif - } - #endif /* ENABLE_FEATURE_MDEV_RENAME */ - - #if ENABLE_FEATURE_MDEV_EXEC -+ val = tokens[4]; - /* The rest (opt): command to run */ - if (!val) - break; - { - const char *s = "@$*"; diff --git a/packages/busybox/busybox-1.13.2/r24785.patch b/packages/busybox/busybox-1.13.2/r24785.patch new file mode 100644 index 0000000000..e3e80befcd --- /dev/null +++ b/packages/busybox/busybox-1.13.2/r24785.patch @@ -0,0 +1,14 @@ +--- busybox/util-linux/mdev.c 2009/01/08 17:19:01 24725 ++++ busybox/util-linux/mdev.c 2009/01/12 07:57:52 24785 +@@ -179,8 +179,9 @@ + unsigned i, n; + #endif + char *a = val; +- s = strchr(val, ' '); +- val = (s && s[1]) ? s+1 : NULL; ++ s = strchrnul(val, ' '); ++ val = (s[0] && s[1]) ? s+1 : NULL; ++ s[0] = '\0'; + #if ENABLE_FEATURE_MDEV_RENAME_REGEXP + /* substitute %1..9 with off[1..9], if any */ + n = 0; diff --git a/packages/busybox/busybox_1.13.2.bb b/packages/busybox/busybox_1.13.2.bb index 2172967bec..7a5731514c 100644 --- a/packages/busybox/busybox_1.13.2.bb +++ b/packages/busybox/busybox_1.13.2.bb @@ -1,13 +1,13 @@ require busybox.inc -PR = "r1" +PR = "r2" SRC_URI = "\ http://www.busybox.net/downloads/busybox-${PV}.tar.gz \ \ file://udhcpscript.patch;patch=1 \ file://B921600.patch;patch=1 \ - file://mdev-fix.patch;patch=1 \ + file://r24785.patch;patch=1;status=merged \ file://find-touchscreen.sh \ file://busybox-cron \ file://busybox-httpd \ -- cgit 1.2.3-korg