From b4cef7fb1d690449d1980006730b0708c7884001 Mon Sep 17 00:00:00 2001 From: Beginner <70857188+Beginner-Go@users.noreply.github.com> Date: Mon, 23 May 2022 19:30:06 +0800 Subject: [PATCH] ucode: update to latest Git HEAD (#9421) * ucode: update to latest Git HEAD e14b099 syntax: implement support for ES6 template literals 111cf06 vm: stop executing bytecode on return of nested calls Signed-off-by: Jo-Philipp Wich * ucode: fix PKG_MIRROR_HASH Fixes: 0400774a10 ("ucode: update to latest Git HEAD") Signed-off-by: Jo-Philipp Wich * ucode: reorder BuildPackage calls Ensure that the libucode recipe is processed before the ucode one in order to reliably encode the ABI version into ucode's libucode dependency. Fixes: #9788 Ref: https://forum.openwrt.org/t/fw4-wont-start-after-upgrade/126308 Signed-off-by: Jo-Philipp Wich * ucode: update to latest Git HEAD 081871e compiler: fix segmentation fault on compiling unexpected unary expressions 090b426 fs: avoid input buffering with small limits in fs.readfile() 8da140f lib: introduce hexenc() and hexdec() 9a72423 Update README.md Signed-off-by: Jo-Philipp Wich Co-authored-by: Jo-Philipp Wich --- package/utils/ucode/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package/utils/ucode/Makefile b/package/utils/ucode/Makefile index 6df5d2aee..5af210935 100644 --- a/package/utils/ucode/Makefile +++ b/package/utils/ucode/Makefile @@ -12,9 +12,9 @@ PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=https://github.com/jow-/ucode.git -PKG_SOURCE_DATE:=2022-04-07 -PKG_SOURCE_VERSION:=33f1e0b0926e973fb5ae445e9a995848762143bb -PKG_MIRROR_HASH:=e419678244c5402c739e3a200d6d1d7cd6989a711c73744bc68b2d5b76bae33a +PKG_SOURCE_DATE:=2022-05-20 +PKG_SOURCE_VERSION:=081871e18db544e2c834a516950e1c16c9bc4d2c +PKG_MIRROR_HASH:=5ff1ee6d5549e83ac7bc5f5877d303c82cdb8e640305de5d95cbd3ce66ced133 PKG_MAINTAINER:=Jo-Philipp Wich PKG_LICENSE:=ISC @@ -201,8 +201,8 @@ define Package/ucode-mod-uci/install endef -$(eval $(call BuildPackage,ucode)) $(eval $(call BuildPackage,libucode)) +$(eval $(call BuildPackage,ucode)) $(eval $(call BuildPackage,ucode-mod-fs)) $(eval $(call BuildPackage,ucode-mod-math)) $(eval $(call BuildPackage,ucode-mod-nl80211))