On 7 August 2013 08:30, Rongqing Li <[email protected]> wrote: >> ${@qemu_run_binary(d, '$D', '${base_bindir}/udevadm')} >> hwdb --update \ >> - --root $D >> + --root $D 2>/dev/null >> + >> + [ $? -ne 0 ] && exit 1
The $? check can be removed replaced by set -e, as many postinst scripts do already. Why/where is the output from runqemu considered an error? I wasn't aware that logs were monitored for that error message. I don't think we should be hiding the output of runqemu as any real errors will also be hidden. Ross _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
