You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The make defconfig results in patch apply errors for hostapd (the 90X series patches) which is simple enough to just remove them for now (even though that appears to make wpa-supplicant vulnerable to key installation attacks). I think this would be an issue regardless of my build environment.
I am using the clear instructions in this repo with a Fedora 23 container (which contains the compatible GCC version 5.3.1). It is possible this version is not quite right which may be the source of some of my trouble.
compiling elfutils when pulling in headers from fortify
modified package/libs/elfutils/Makefile to add from scumvm example:
TARGET_CFLAGS+=-Wno-error
CONFIG_PACKAGE_davfs2=m
commented out davfs2 to avoid this error
<command-line>:0:0: warning: "_FORTIFY_SOURCE" redefined
<command-line>:0:0: note: this is the location of the previous definition
webdav.c: In function 'dav_conv_from_utf_8':
webdav.c:589:9: error: 'from_utf_8' undeclared (first use in this function)
if (from_utf_8)
^
webdav.c:589:9: note: each undeclared identifier is reported only once for each function it appears in
webdav.c:590:9: warning: implicit declaration of function 'convert' [-Wimplicit-function-declaration]
convert(&new,from_utf_8);^webdav.c: Infunction 'dav_conv_to_utf_8':
webdav.c:601:9: error: 'to_utf_8' undeclared(firstuseinthisfunction)if(to_utf_8)^webdav.c: Infunction 'dav_conv_from_server_enc':
webdav.c:613:9: error: 'from_server_enc' undeclared(firstuseinthisfunction)if(from_server_enc)^webdav.c: Infunction 'dav_conv_to_server_enc':
webdav.c:625:9: error: 'to_server_enc' undeclared(firstuseinthisfunction)if(to_server_enc)^webdav.c: Attoplevel:
webdav.c:1275:19: error: unknowntypename 'iconv_t'
convert(char**s,iconv_tconv)^webdav.c: Infunction 'prop_result':
webdav.c:1898:13: error: 'from_server_enc' undeclared(firstuseinthisfunction)if(from_server_enc)^Infileincludedfromwebdav.c:22:0:
webdav.c: Attoplevel:
compat.h:51:15: warning: 'canonicalize_file_name' definedbutnotused[-Wunused-function]staticchar*canonicalize_file_name(constchar*path)^webdav.c:1546:1: warning: 'log_writer' definedbutnotused[-Wunused-function]log_writer(void*cookie,constchar*buffer,size_tsize)^Makefile:423: recipefortarget 'webdav.o' failed
I'm surprised you got this far :D When I was building the repo I used Debian 6 or 7 I think, not sure if it would make a difference compared to your Fedora container. The wpa_supplicant problem problem probably just needs an updated patch to match the upstream tarball.
package dependency failed on install of gnutls: libidn.so.11
This should be an easy fix. Find out what package contains libidn.so.11 and add that as a package depends in the gnutls Makefile
You will likely hit more snags.. and then some more ;) good luck
Thanks for all your work on the Z2 over the years!
I am wondering what you were using for your build environment for your last bleeding edge image and the package repo: https://mozzwald.com/zipit/index.php?dir=openwrt%2Fbleeding_edge%2F
The
make defconfig
results in patch apply errors for hostapd (the 90X series patches) which is simple enough to just remove them for now (even though that appears to makewpa-supplicant
vulnerable to key installation attacks). I think this would be an issue regardless of my build environment.I am using the clear instructions in this repo with a Fedora 23 container (which contains the compatible GCC version 5.3.1). It is possible this version is not quite right which may be the source of some of my trouble.
But am running into several errors as I attempt to build with your deconfig https://mozzwald.com/zipit/openwrt/bleeding_edge/zipit_openwrt_defconfig_repo:
Werror=format-nonliteral
compiling
elfutils
when pulling in headers fromfortify
modified
package/libs/elfutils/Makefile
to add from scumvm example:CONFIG_PACKAGE_davfs2=m
commented out davfs2 to avoid this error
git archive uid/gid
fixed by removing
#CONFIG_PACKAGE_git=m
#CONFIG_PACKAGE_git-http=m
feeds/packages/libs/gnutls compile
package dependency failed on install of gnutls: libidn.so.11
and I stalled here to file the issue. Thanks again!
The text was updated successfully, but these errors were encountered: