From: Jason Wessel Date: Tue, 12 Apr 2011 19:11:36 +0000 (+0200) Subject: Fix up all use of /dev/stderr for portability to busybox /bin/sh X-Git-Tag: v0.13~34^2 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=a4e9613d77b6a7bfe388f47cf5375b6aea9026b8;hp=a4e9613d77b6a7bfe388f47cf5375b6aea9026b8;p=ust.git Fix up all use of /dev/stderr for portability to busybox /bin/sh The typical shell on a small embedded target using busybox does not have support for /dev/stderr. A more portable way to send output to stderr with echo is to redirect stdout to stderr with 1>&2. In the usttrace script it did something that was effectively a NOP. The result of echo "" 2>/dev/stderr is not actually going to send anything to stderr because the echo is going to write to stdout. This case was also fixed. Signed-off-by: Jason Wessel Signed-off-by: Nils Carlson ---