Index: menu/Makefile =================================================================== --- menu/Makefile (revision 35777) +++ menu/Makefile (revision 35778) @@ -1,4 +1,4 @@ -GFLT=../pupfilter.sh +GFLT=../pupfilter.sh ws all: Index: pupfilter.sh =================================================================== --- pupfilter.sh (revision 35777) +++ pupfilter.sh (revision 35778) @@ -3,8 +3,16 @@ # ignore plugin loading errors: this way we do not need to install all # librnd deps -exec awk ' +exec awk -v "how=$1" ' + BEGIN { + ws = "ws" ~ how; + } /^E: Some of the dynamic/ { next } /^E: puplug:/ { next} + /^pcb-rnd conf ERROR: conf node .*not unregistered/ { next } + /^ERROR: hid_actions_uninit: action.*left registered/ { next } + /^pcb_plug_fp_chain is not empty;/ { next } + /^... Log produced during uninitialization:/ { next } + (ws && (/^[ \t]*$/)) { next } { print $0 } '