[ipxe-devel] [PATCH] [build] Remove nested 'my' declaration.

2016-05-27 Thread Vinson Lee
Fix build error with perl >= 5.23.2. Can't redeclare "my" in "my" at ./util/parserom.pl line 160, near ", " Fixes: 68d8a44469ecd ("[build] Rewrite parserom.pl to support multiple source files") Signed-off-by: Vinson Lee <v...@freedesktop.org> --

[ipxe-devel] [PATCH] [mcurses] Fix GCC 6 nonnull-compare errors.

2016-02-27 Thread Vinson Lee
‘parent’ compared to NULL [-Werror=nonnull-compare] if ( parent == NULL ) ^ Fixes: d39e79248c2d ("__nonnull changes") Signed-off-by: Vinson Lee <v...@freedesktop.org> --- src/hci/mucurses/windows.c | 11 --- 1 file changed, 11 deletions(-) diff --git a/src/hci/mucu

[ipxe-devel] [PATCH] [mcurses] Fix GCC 6 nonnull-compare errors.

2016-02-27 Thread Vinson Lee
‘parent’ compared to NULL [-Werror=nonnull-compare] if ( parent == NULL ) ^ Fixes: d39e79248c2d ("__nonnull changes") Signed-off-by: Vinson Lee <v...@freedesktop.org> --- src/hci/mucurses/windows.c | 11 --- 1 file changed, 11 deletions(-) diff --git a/src/hci/mucu

[ipxe-devel] [PATCH] [mcurses] Fix GCC 6 nonnull-compare errors.

2016-04-15 Thread Vinson Lee
‘parent’ compared to NULL [-Werror=nonnull-compare] if ( parent == NULL ) ^ Fixes: d39e79248c2d ("__nonnull changes") Signed-off-by: Vinson Lee <v...@freedesktop.org> --- src/hci/mucurses/windows.c | 11 --- 1 file changed, 11 deletions(-) diff --git a/src/hci/mucu

[ipxe-devel] [PATCH] [build] Ignore GCC 7 implicit-fallthrough errors.

2017-02-13 Thread Vinson Lee
-fallthrough=] msgbuf |= E1000_VF_SET_PROMISC_MULTICAST; drivers/net/igbvf/igbvf_vf.c:360:2: note: here case e1000_promisc_unicast: ^~~~ Signed-off-by: Vinson Lee <v...@freedesktop.org> --- src/Makefile.housekeeping | 7 +++ 1 file changed, 7 insertions(+) diff --git a/src/Makefile.housek