commit | 14cef4e6c4d3e206d43cc9653e479a5a331f06ab | [log] [tgz] |
---|---|---|
author | Jorge Cisneros <jcisneros3@lenovo.com> | Tue Feb 15 21:01:20 2022 +0000 |
committer | Patrick Williams <patrick@stwcx.xyz> | Wed Feb 16 16:33:58 2022 +0000 |
tree | db99b1acba65ad505bb8f7885e88200b74c8911b | |
parent | 5885e07234f3628287cbdaab5862d77c63e7f767 [diff] |
webui-vue: enable network access during build Network access is disabled by Yocto in all tasks except do_fetch on kernels compiled with CONFIG_NET_NS enabled, like the kernel 5.4.0-97 on Ubuntu 20.04 The logs show the error, for example, this one. | npm ERR! code EAI_AGAIN | npm ERR! syscall getaddrinfo | npm ERR! errno EAI_AGAIN | npm ERR! request to https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz failed, reason: getaddrinfo EAI_AGAIN registry.npmjs.org you can read more about this here https://git.yoctoproject.org/poky/tree/documentation/migration-guides/migration-3.5.rst#n25 Note: This is just a workaround, a better solution should be to use the yocto npm-fetcher Signed-off-by: Jorge Cisneros <jcisneros3@lenovo.com> Change-Id: I84787cb603ae8ef36cac973a6e0dbc6da030a698
diff --git a/meta-phosphor/recipes-phosphor/webui/webui-vue_git.bb b/meta-phosphor/recipes-phosphor/webui/webui-vue_git.bb index de4ec2e..cc24c65 100644 --- a/meta-phosphor/recipes-phosphor/webui/webui-vue_git.bb +++ b/meta-phosphor/recipes-phosphor/webui/webui-vue_git.bb
@@ -32,6 +32,11 @@ EXTRA_OENPM ?= "" +# Workaround +# Network access from task are disabled by default on Yocto 3.5 +# https://git.yoctoproject.org/poky/tree/documentation/migration-guides/migration-3.5.rst#n25 +do_compile[network] = "1" + do_compile () { cd ${S} rm -rf node_modules