├── LICENSE ├── README.md ├── classes ├── openwrt-base-files.bbclass ├── openwrt-distro-defaults.bbclass ├── openwrt-kmods.bbclass ├── openwrt-lua.bbclass ├── openwrt-services.bbclass ├── openwrt-virtual-runtimes.bbclass └── openwrt.bbclass ├── conf └── layer.conf ├── recipes-core ├── firewall3 │ └── firewall3_git.bb ├── fstools │ ├── files │ │ └── 0001-Define-GLOB_ONLYDIR-if-not-available.patch │ └── fstools_git.bb ├── images │ └── openwrt-image-minimal.bb ├── iwinfo │ ├── iwinfo │ │ ├── 0001-Makefile-LDFLAGS-set-liblua5.1-for-lua-lib.patch │ │ ├── 0002-fix-order-of-linker-cmdline-to-help-linking.patch │ │ └── 0003-Replace-typedef-loaL_reg-with-luaL_Reg.patch │ └── iwinfo_git.bb ├── jsonpath │ ├── files │ │ ├── 0001-sync-lemon-parser.patch │ │ ├── 0002-Declare-ParseTrace.patch │ │ └── 0100-break-lemon-dependency-cycle.patch │ └── jsonpath_git.bb ├── libubox │ ├── libubox │ │ ├── 0001-version-libraries.patch │ │ └── fix-libdir.patch │ └── libubox_git.bb ├── make-ext4fs │ ├── files │ │ └── 0001-Add-missing-space-before-linker-option.patch │ └── make-ext4fs_git.bb ├── netifd │ ├── netifd │ │ ├── 0001-resolv.conf.auto-Use-run-instead-of-tmp.patch │ │ ├── 100-Fix-IFF_LOWER_UP-define.patch │ │ └── network.config │ └── netifd_git.bb ├── odhcp6c │ └── odhcp6c_git.bb ├── odhcpd │ └── odhcpd_git.bb ├── packagegroups │ └── packagegroup-openwrt-minimal.bb ├── procd │ ├── procd-inittab.bb │ ├── procd-inittab │ │ └── inittab │ ├── procd │ │ ├── 00_preinit.conf │ │ ├── 0100-use-sysmacros-where-needed.patch │ │ ├── 0200-fix-build.patch │ │ ├── 10_sysinfo │ │ └── banner.failsafe │ └── procd_git.bb ├── rpcd │ └── rpcd_git.bb ├── ubox │ ├── ubox │ │ ├── 0001-Fix-compilation-problem-warn_unused_result-Wunused-r.patch │ │ ├── 100-insmod-segfault.patch │ │ └── log.init │ └── ubox_git.bb ├── ubus │ └── ubus_git.bb ├── uci │ └── uci_git.bb ├── uclient │ ├── uclient │ │ └── 0001-remove-call-to-deprecated-function-luaL_openlib-in-l.patch │ └── uclient_git.bb ├── ustream-ssl │ └── ustream-ssl_git.bb └── xtables-addons │ ├── files │ ├── 0001-Unset-LDFLAGS-for-kernel-modules.patch │ ├── 001-fix-kernel-version-detection.patch │ ├── 100-add-rtsp-conntrack.patch │ ├── 200-add-lua-packetscript.patch │ ├── 201-fix-lua-packetscript.patch │ ├── 202-add-lua-autoconf.patch │ └── 400-fix-IFF_LOWER_UP-musl.patch │ └── xtables-addons_3.25.bb ├── recipes-extended ├── images │ ├── openwrt-image-base.bb │ ├── openwrt-image-full.bb │ └── openwrt-image-juci.bb ├── libnl-tiny │ └── libnl-tiny_git.bb ├── libroxml │ ├── libroxml_2.3.0.bb │ └── libroxml_git.bb ├── luci │ ├── luci │ │ └── cmake.patch │ └── luci_git.bb ├── lucihttp │ └── lucihttp.bb ├── packagegroups │ ├── packagegroup-openwrt-base.bb │ └── packagegroup-openwrt-full.bb ├── ugps │ └── ugps_git.bb ├── usbmode │ └── usbmode_git.bb └── usign │ └── usign_git.bb ├── recipes-kernel └── linux │ ├── files │ ├── bridge.cfg │ └── ipset.cfg │ └── linux-yocto%.bbappend ├── recipes-networking ├── ipset │ └── ipset_7.9.bb ├── relayd │ ├── relayd │ │ └── 0001-Fix-ignoring-return-value-of-write-declared-with-att.patch │ └── relayd_git.bb ├── uhttpd │ ├── uhttpd │ │ └── 0100-fix-wrong-binaries-found-due-to-inconsistent-path.patch │ └── uhttpd_git.bb ├── umbim │ ├── umbim │ │ └── 0001-remove-call-to-deprecated-function-luaL_openlib-in-l.patch │ └── umbim_git.bb ├── umdnsd │ └── umdnsd_git.bb └── uqmi │ ├── uqmi │ └── 001-fix-uninitialized-variable.patch │ └── uqmi_git.bb ├── recipes-support ├── cgi-io │ └── cgi-io_git.bb ├── lua-socket │ └── lua-socket_git.bb ├── lua │ ├── lua5.1 │ │ ├── 0004-Fix-stack-overflow-in-vararg-functions.patch │ │ ├── bitwise_operators.patch │ │ ├── lua5.1.pc │ │ ├── luaorg_1.patch │ │ ├── luaorg_2.patch │ │ └── uclibc-pthread.patch │ └── lua5.1_5.1.5.bb └── ucode │ └── ucode_git.bb └── recipes-tweaks ├── base-files ├── base-files-scripts.bb └── base-files_3.%.bbappend ├── busybox ├── busybox-1.36.% │ └── z300-fix_off_t_misdetection_triggered_without_LFS.patch ├── busybox │ ├── 220-add_lock_util.patch │ ├── fragment-lock.cfg │ └── fragment-noifupdown.cfg ├── busybox_%.bbappend └── busybox_1.36.%.bbappend ├── dnsmasq ├── dnsmasq │ └── 99-dnsmasq.rules └── dnsmasq_%.bbappend ├── hostapd └── hostapd_%.bbappend ├── iptables ├── iptables │ ├── 200-configurable_builtin.patch │ ├── 600-shared-libext.patch │ └── 601-Fix-out-of-tree-build.patch └── iptables_1.8.%.bbappend ├── modutils-initscripts ├── files │ └── modutils.init └── modutils-initscripts.bbappend ├── packagegroups └── packagegroup-core-boot.bbappend └── udev ├── eudev └── udev.procd └── eudev_%.bbappend /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/README.md -------------------------------------------------------------------------------- /classes/openwrt-base-files.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt-base-files.bbclass -------------------------------------------------------------------------------- /classes/openwrt-distro-defaults.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt-distro-defaults.bbclass -------------------------------------------------------------------------------- /classes/openwrt-kmods.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt-kmods.bbclass -------------------------------------------------------------------------------- /classes/openwrt-lua.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt-lua.bbclass -------------------------------------------------------------------------------- /classes/openwrt-services.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt-services.bbclass -------------------------------------------------------------------------------- /classes/openwrt-virtual-runtimes.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt-virtual-runtimes.bbclass -------------------------------------------------------------------------------- /classes/openwrt.bbclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/classes/openwrt.bbclass -------------------------------------------------------------------------------- /conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/conf/layer.conf -------------------------------------------------------------------------------- /recipes-core/firewall3/firewall3_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/firewall3/firewall3_git.bb -------------------------------------------------------------------------------- /recipes-core/fstools/files/0001-Define-GLOB_ONLYDIR-if-not-available.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/fstools/files/0001-Define-GLOB_ONLYDIR-if-not-available.patch -------------------------------------------------------------------------------- /recipes-core/fstools/fstools_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/fstools/fstools_git.bb -------------------------------------------------------------------------------- /recipes-core/images/openwrt-image-minimal.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/images/openwrt-image-minimal.bb -------------------------------------------------------------------------------- /recipes-core/iwinfo/iwinfo/0001-Makefile-LDFLAGS-set-liblua5.1-for-lua-lib.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/iwinfo/iwinfo/0001-Makefile-LDFLAGS-set-liblua5.1-for-lua-lib.patch -------------------------------------------------------------------------------- /recipes-core/iwinfo/iwinfo/0002-fix-order-of-linker-cmdline-to-help-linking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/iwinfo/iwinfo/0002-fix-order-of-linker-cmdline-to-help-linking.patch -------------------------------------------------------------------------------- /recipes-core/iwinfo/iwinfo/0003-Replace-typedef-loaL_reg-with-luaL_Reg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/iwinfo/iwinfo/0003-Replace-typedef-loaL_reg-with-luaL_Reg.patch -------------------------------------------------------------------------------- /recipes-core/iwinfo/iwinfo_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/iwinfo/iwinfo_git.bb -------------------------------------------------------------------------------- /recipes-core/jsonpath/files/0001-sync-lemon-parser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/jsonpath/files/0001-sync-lemon-parser.patch -------------------------------------------------------------------------------- /recipes-core/jsonpath/files/0002-Declare-ParseTrace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/jsonpath/files/0002-Declare-ParseTrace.patch -------------------------------------------------------------------------------- /recipes-core/jsonpath/files/0100-break-lemon-dependency-cycle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/jsonpath/files/0100-break-lemon-dependency-cycle.patch -------------------------------------------------------------------------------- /recipes-core/jsonpath/jsonpath_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/jsonpath/jsonpath_git.bb -------------------------------------------------------------------------------- /recipes-core/libubox/libubox/0001-version-libraries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/libubox/libubox/0001-version-libraries.patch -------------------------------------------------------------------------------- /recipes-core/libubox/libubox/fix-libdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/libubox/libubox/fix-libdir.patch -------------------------------------------------------------------------------- /recipes-core/libubox/libubox_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/libubox/libubox_git.bb -------------------------------------------------------------------------------- /recipes-core/make-ext4fs/files/0001-Add-missing-space-before-linker-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/make-ext4fs/files/0001-Add-missing-space-before-linker-option.patch -------------------------------------------------------------------------------- /recipes-core/make-ext4fs/make-ext4fs_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/make-ext4fs/make-ext4fs_git.bb -------------------------------------------------------------------------------- /recipes-core/netifd/netifd/0001-resolv.conf.auto-Use-run-instead-of-tmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/netifd/netifd/0001-resolv.conf.auto-Use-run-instead-of-tmp.patch -------------------------------------------------------------------------------- /recipes-core/netifd/netifd/100-Fix-IFF_LOWER_UP-define.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/netifd/netifd/100-Fix-IFF_LOWER_UP-define.patch -------------------------------------------------------------------------------- /recipes-core/netifd/netifd/network.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/netifd/netifd/network.config -------------------------------------------------------------------------------- /recipes-core/netifd/netifd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/netifd/netifd_git.bb -------------------------------------------------------------------------------- /recipes-core/odhcp6c/odhcp6c_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/odhcp6c/odhcp6c_git.bb -------------------------------------------------------------------------------- /recipes-core/odhcpd/odhcpd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/odhcpd/odhcpd_git.bb -------------------------------------------------------------------------------- /recipes-core/packagegroups/packagegroup-openwrt-minimal.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/packagegroups/packagegroup-openwrt-minimal.bb -------------------------------------------------------------------------------- /recipes-core/procd/procd-inittab.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd-inittab.bb -------------------------------------------------------------------------------- /recipes-core/procd/procd-inittab/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd-inittab/inittab -------------------------------------------------------------------------------- /recipes-core/procd/procd/00_preinit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd/00_preinit.conf -------------------------------------------------------------------------------- /recipes-core/procd/procd/0100-use-sysmacros-where-needed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd/0100-use-sysmacros-where-needed.patch -------------------------------------------------------------------------------- /recipes-core/procd/procd/0200-fix-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd/0200-fix-build.patch -------------------------------------------------------------------------------- /recipes-core/procd/procd/10_sysinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd/10_sysinfo -------------------------------------------------------------------------------- /recipes-core/procd/procd/banner.failsafe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd/banner.failsafe -------------------------------------------------------------------------------- /recipes-core/procd/procd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/procd/procd_git.bb -------------------------------------------------------------------------------- /recipes-core/rpcd/rpcd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/rpcd/rpcd_git.bb -------------------------------------------------------------------------------- /recipes-core/ubox/ubox/0001-Fix-compilation-problem-warn_unused_result-Wunused-r.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/ubox/ubox/0001-Fix-compilation-problem-warn_unused_result-Wunused-r.patch -------------------------------------------------------------------------------- /recipes-core/ubox/ubox/100-insmod-segfault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/ubox/ubox/100-insmod-segfault.patch -------------------------------------------------------------------------------- /recipes-core/ubox/ubox/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/ubox/ubox/log.init -------------------------------------------------------------------------------- /recipes-core/ubox/ubox_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/ubox/ubox_git.bb -------------------------------------------------------------------------------- /recipes-core/ubus/ubus_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/ubus/ubus_git.bb -------------------------------------------------------------------------------- /recipes-core/uci/uci_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/uci/uci_git.bb -------------------------------------------------------------------------------- /recipes-core/uclient/uclient/0001-remove-call-to-deprecated-function-luaL_openlib-in-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/uclient/uclient/0001-remove-call-to-deprecated-function-luaL_openlib-in-l.patch -------------------------------------------------------------------------------- /recipes-core/uclient/uclient_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/uclient/uclient_git.bb -------------------------------------------------------------------------------- /recipes-core/ustream-ssl/ustream-ssl_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/ustream-ssl/ustream-ssl_git.bb -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/0001-Unset-LDFLAGS-for-kernel-modules.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/0001-Unset-LDFLAGS-for-kernel-modules.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/001-fix-kernel-version-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/001-fix-kernel-version-detection.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/100-add-rtsp-conntrack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/100-add-rtsp-conntrack.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/200-add-lua-packetscript.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/200-add-lua-packetscript.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/201-fix-lua-packetscript.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/201-fix-lua-packetscript.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/202-add-lua-autoconf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/202-add-lua-autoconf.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/files/400-fix-IFF_LOWER_UP-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/files/400-fix-IFF_LOWER_UP-musl.patch -------------------------------------------------------------------------------- /recipes-core/xtables-addons/xtables-addons_3.25.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-core/xtables-addons/xtables-addons_3.25.bb -------------------------------------------------------------------------------- /recipes-extended/images/openwrt-image-base.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/images/openwrt-image-base.bb -------------------------------------------------------------------------------- /recipes-extended/images/openwrt-image-full.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/images/openwrt-image-full.bb -------------------------------------------------------------------------------- /recipes-extended/images/openwrt-image-juci.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/images/openwrt-image-juci.bb -------------------------------------------------------------------------------- /recipes-extended/libnl-tiny/libnl-tiny_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/libnl-tiny/libnl-tiny_git.bb -------------------------------------------------------------------------------- /recipes-extended/libroxml/libroxml_2.3.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/libroxml/libroxml_2.3.0.bb -------------------------------------------------------------------------------- /recipes-extended/libroxml/libroxml_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/libroxml/libroxml_git.bb -------------------------------------------------------------------------------- /recipes-extended/luci/luci/cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/luci/luci/cmake.patch -------------------------------------------------------------------------------- /recipes-extended/luci/luci_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/luci/luci_git.bb -------------------------------------------------------------------------------- /recipes-extended/lucihttp/lucihttp.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/lucihttp/lucihttp.bb -------------------------------------------------------------------------------- /recipes-extended/packagegroups/packagegroup-openwrt-base.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/packagegroups/packagegroup-openwrt-base.bb -------------------------------------------------------------------------------- /recipes-extended/packagegroups/packagegroup-openwrt-full.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/packagegroups/packagegroup-openwrt-full.bb -------------------------------------------------------------------------------- /recipes-extended/ugps/ugps_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/ugps/ugps_git.bb -------------------------------------------------------------------------------- /recipes-extended/usbmode/usbmode_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/usbmode/usbmode_git.bb -------------------------------------------------------------------------------- /recipes-extended/usign/usign_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-extended/usign/usign_git.bb -------------------------------------------------------------------------------- /recipes-kernel/linux/files/bridge.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_BRIDGE=m 2 | -------------------------------------------------------------------------------- /recipes-kernel/linux/files/ipset.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_IP_SET=m 2 | -------------------------------------------------------------------------------- /recipes-kernel/linux/linux-yocto%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-kernel/linux/linux-yocto%.bbappend -------------------------------------------------------------------------------- /recipes-networking/ipset/ipset_7.9.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/ipset/ipset_7.9.bb -------------------------------------------------------------------------------- /recipes-networking/relayd/relayd/0001-Fix-ignoring-return-value-of-write-declared-with-att.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/relayd/relayd/0001-Fix-ignoring-return-value-of-write-declared-with-att.patch -------------------------------------------------------------------------------- /recipes-networking/relayd/relayd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/relayd/relayd_git.bb -------------------------------------------------------------------------------- /recipes-networking/uhttpd/uhttpd/0100-fix-wrong-binaries-found-due-to-inconsistent-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/uhttpd/uhttpd/0100-fix-wrong-binaries-found-due-to-inconsistent-path.patch -------------------------------------------------------------------------------- /recipes-networking/uhttpd/uhttpd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/uhttpd/uhttpd_git.bb -------------------------------------------------------------------------------- /recipes-networking/umbim/umbim/0001-remove-call-to-deprecated-function-luaL_openlib-in-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/umbim/umbim/0001-remove-call-to-deprecated-function-luaL_openlib-in-l.patch -------------------------------------------------------------------------------- /recipes-networking/umbim/umbim_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/umbim/umbim_git.bb -------------------------------------------------------------------------------- /recipes-networking/umdnsd/umdnsd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/umdnsd/umdnsd_git.bb -------------------------------------------------------------------------------- /recipes-networking/uqmi/uqmi/001-fix-uninitialized-variable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/uqmi/uqmi/001-fix-uninitialized-variable.patch -------------------------------------------------------------------------------- /recipes-networking/uqmi/uqmi_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-networking/uqmi/uqmi_git.bb -------------------------------------------------------------------------------- /recipes-support/cgi-io/cgi-io_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/cgi-io/cgi-io_git.bb -------------------------------------------------------------------------------- /recipes-support/lua-socket/lua-socket_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua-socket/lua-socket_git.bb -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1/0004-Fix-stack-overflow-in-vararg-functions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1/0004-Fix-stack-overflow-in-vararg-functions.patch -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1/bitwise_operators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1/bitwise_operators.patch -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1/lua5.1.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1/lua5.1.pc -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1/luaorg_1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1/luaorg_1.patch -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1/luaorg_2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1/luaorg_2.patch -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1/uclibc-pthread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1/uclibc-pthread.patch -------------------------------------------------------------------------------- /recipes-support/lua/lua5.1_5.1.5.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/lua/lua5.1_5.1.5.bb -------------------------------------------------------------------------------- /recipes-support/ucode/ucode_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-support/ucode/ucode_git.bb -------------------------------------------------------------------------------- /recipes-tweaks/base-files/base-files-scripts.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/base-files/base-files-scripts.bb -------------------------------------------------------------------------------- /recipes-tweaks/base-files/base-files_3.%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/base-files/base-files_3.%.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/busybox/busybox-1.36.%/z300-fix_off_t_misdetection_triggered_without_LFS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/busybox/busybox-1.36.%/z300-fix_off_t_misdetection_triggered_without_LFS.patch -------------------------------------------------------------------------------- /recipes-tweaks/busybox/busybox/220-add_lock_util.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/busybox/busybox/220-add_lock_util.patch -------------------------------------------------------------------------------- /recipes-tweaks/busybox/busybox/fragment-lock.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/busybox/busybox/fragment-lock.cfg -------------------------------------------------------------------------------- /recipes-tweaks/busybox/busybox/fragment-noifupdown.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/busybox/busybox/fragment-noifupdown.cfg -------------------------------------------------------------------------------- /recipes-tweaks/busybox/busybox_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/busybox/busybox_%.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/busybox/busybox_1.36.%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/busybox/busybox_1.36.%.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/dnsmasq/dnsmasq/99-dnsmasq.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/dnsmasq/dnsmasq/99-dnsmasq.rules -------------------------------------------------------------------------------- /recipes-tweaks/dnsmasq/dnsmasq_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/dnsmasq/dnsmasq_%.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/hostapd/hostapd_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/hostapd/hostapd_%.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/iptables/iptables/200-configurable_builtin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/iptables/iptables/200-configurable_builtin.patch -------------------------------------------------------------------------------- /recipes-tweaks/iptables/iptables/600-shared-libext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/iptables/iptables/600-shared-libext.patch -------------------------------------------------------------------------------- /recipes-tweaks/iptables/iptables/601-Fix-out-of-tree-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/iptables/iptables/601-Fix-out-of-tree-build.patch -------------------------------------------------------------------------------- /recipes-tweaks/iptables/iptables_1.8.%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/iptables/iptables_1.8.%.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/modutils-initscripts/files/modutils.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/modutils-initscripts/files/modutils.init -------------------------------------------------------------------------------- /recipes-tweaks/modutils-initscripts/modutils-initscripts.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/modutils-initscripts/modutils-initscripts.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/packagegroups/packagegroup-core-boot.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/packagegroups/packagegroup-core-boot.bbappend -------------------------------------------------------------------------------- /recipes-tweaks/udev/eudev/udev.procd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/udev/eudev/udev.procd -------------------------------------------------------------------------------- /recipes-tweaks/udev/eudev_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kraj/meta-openwrt/HEAD/recipes-tweaks/udev/eudev_%.bbappend --------------------------------------------------------------------------------