├── README.md ├── conf ├── bblayers.conf.sample ├── distro │ └── openwrt.conf ├── layer.conf └── local.conf.sample └── recipes-core ├── base-files-openwrt ├── base-files-openwrt_git.bb └── files │ ├── LICENSE │ └── fix-network-config.patch ├── busybox ├── busybox_%.bbappend └── files │ ├── 220-add_lock_util.patch │ ├── 250-date-k-flag.patch │ └── lock.cfg ├── dnsmasq ├── dnsmasq_%.bbappend └── files │ ├── dhcp.conf │ ├── dnsmasq.conf │ ├── dnsmasq.hotplug │ └── dnsmasq.init ├── fstools ├── files │ ├── fix-bsd.patch │ ├── fstab.default │ ├── fstab.init │ ├── mount.hotplug │ └── snapshot └── fstools_git.bb ├── images └── openwrt-image-base.bb ├── initscripts └── initscripts_%.bbappend ├── iwinfo ├── files │ ├── fix-make.patch │ └── luajit.patch └── iwinfo_git.bb ├── jsonfiler ├── files │ └── fix-lemon.patch └── jsonfilter_git.bb ├── libubox ├── files │ └── luajit.patch └── libubox_git.bb ├── lua-socket ├── files │ └── lua-socket_2.0.2-make.patch └── lua-socket_2.0.2.bb ├── luajit ├── files │ └── pkgconfig │ │ └── luajit.pc └── luajit_%.bbappend ├── luci ├── files │ ├── fix-compile-luajit.patch │ ├── fix-compile.patch │ └── luajit.patch └── luci_git.bb ├── luci2 └── luci2_git.bb ├── netifd ├── files │ ├── files │ │ ├── etc │ │ │ ├── hotplug.d │ │ │ │ └── iface │ │ │ │ │ └── 00-netstate │ │ │ └── init.d │ │ │ │ └── network │ │ ├── lib │ │ │ ├── netifd │ │ │ │ ├── dhcp.script │ │ │ │ └── proto │ │ │ │ │ └── dhcp.sh │ │ │ └── network │ │ │ │ └── config.sh │ │ ├── sbin │ │ │ ├── devstatus │ │ │ ├── ifdown │ │ │ ├── ifstatus │ │ │ └── ifup │ │ └── usr │ │ │ └── share │ │ │ └── udhcpc │ │ │ └── default.script │ └── fix-compile.patch └── netifd_git.bb ├── packagegroups └── packagegroup-openwrt-boot.bb ├── procd ├── files │ ├── hotplug-preinit.json │ ├── hotplug.json │ ├── nand.sh │ ├── procd.sh │ └── reload_config └── procd_git.bb ├── rpcd ├── files │ ├── rpcd.config │ └── rpcd.init └── rpcd_git.bb ├── ubox ├── files │ ├── 100-insmod-segfault.patch │ └── log.init └── ubox_git.bb ├── ubus ├── files │ └── luajit.patch └── ubus_git.bb ├── uci ├── files │ ├── luajit.patch │ └── uci.sh └── uci_git.bb ├── uhttpd ├── files │ └── luajit.patch └── uhttpd_git.bb ├── uhttpd2 ├── files │ ├── fix-bsd.patch │ ├── luajit.patch │ ├── ubus.default │ ├── uhttpd.config │ └── uhttpd.init └── uhttpd2_git.bb ├── update-rc.d ├── files │ └── single_runlevel.patch └── update-rc.d_%.bbappend └── ustream-ssl └── ustream-ssl_git.bb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/README.md -------------------------------------------------------------------------------- /conf/bblayers.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/conf/bblayers.conf.sample -------------------------------------------------------------------------------- /conf/distro/openwrt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/conf/distro/openwrt.conf -------------------------------------------------------------------------------- /conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/conf/layer.conf -------------------------------------------------------------------------------- /conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/conf/local.conf.sample -------------------------------------------------------------------------------- /recipes-core/base-files-openwrt/base-files-openwrt_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/base-files-openwrt/base-files-openwrt_git.bb -------------------------------------------------------------------------------- /recipes-core/base-files-openwrt/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/base-files-openwrt/files/LICENSE -------------------------------------------------------------------------------- /recipes-core/base-files-openwrt/files/fix-network-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/base-files-openwrt/files/fix-network-config.patch -------------------------------------------------------------------------------- /recipes-core/busybox/busybox_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/busybox/busybox_%.bbappend -------------------------------------------------------------------------------- /recipes-core/busybox/files/220-add_lock_util.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/busybox/files/220-add_lock_util.patch -------------------------------------------------------------------------------- /recipes-core/busybox/files/250-date-k-flag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/busybox/files/250-date-k-flag.patch -------------------------------------------------------------------------------- /recipes-core/busybox/files/lock.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_LOCK=y 2 | -------------------------------------------------------------------------------- /recipes-core/dnsmasq/dnsmasq_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/dnsmasq/dnsmasq_%.bbappend -------------------------------------------------------------------------------- /recipes-core/dnsmasq/files/dhcp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/dnsmasq/files/dhcp.conf -------------------------------------------------------------------------------- /recipes-core/dnsmasq/files/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/dnsmasq/files/dnsmasq.conf -------------------------------------------------------------------------------- /recipes-core/dnsmasq/files/dnsmasq.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/dnsmasq/files/dnsmasq.hotplug -------------------------------------------------------------------------------- /recipes-core/dnsmasq/files/dnsmasq.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/dnsmasq/files/dnsmasq.init -------------------------------------------------------------------------------- /recipes-core/fstools/files/fix-bsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/fstools/files/fix-bsd.patch -------------------------------------------------------------------------------- /recipes-core/fstools/files/fstab.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/fstools/files/fstab.default -------------------------------------------------------------------------------- /recipes-core/fstools/files/fstab.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/fstools/files/fstab.init -------------------------------------------------------------------------------- /recipes-core/fstools/files/mount.hotplug: -------------------------------------------------------------------------------- 1 | /sbin/block hotplug 2 | -------------------------------------------------------------------------------- /recipes-core/fstools/files/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/fstools/files/snapshot -------------------------------------------------------------------------------- /recipes-core/fstools/fstools_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/fstools/fstools_git.bb -------------------------------------------------------------------------------- /recipes-core/images/openwrt-image-base.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/images/openwrt-image-base.bb -------------------------------------------------------------------------------- /recipes-core/initscripts/initscripts_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/initscripts/initscripts_%.bbappend -------------------------------------------------------------------------------- /recipes-core/iwinfo/files/fix-make.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/iwinfo/files/fix-make.patch -------------------------------------------------------------------------------- /recipes-core/iwinfo/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/iwinfo/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/iwinfo/iwinfo_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/iwinfo/iwinfo_git.bb -------------------------------------------------------------------------------- /recipes-core/jsonfiler/files/fix-lemon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/jsonfiler/files/fix-lemon.patch -------------------------------------------------------------------------------- /recipes-core/jsonfiler/jsonfilter_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/jsonfiler/jsonfilter_git.bb -------------------------------------------------------------------------------- /recipes-core/libubox/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/libubox/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/libubox/libubox_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/libubox/libubox_git.bb -------------------------------------------------------------------------------- /recipes-core/lua-socket/files/lua-socket_2.0.2-make.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/lua-socket/files/lua-socket_2.0.2-make.patch -------------------------------------------------------------------------------- /recipes-core/lua-socket/lua-socket_2.0.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/lua-socket/lua-socket_2.0.2.bb -------------------------------------------------------------------------------- /recipes-core/luajit/files/pkgconfig/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luajit/files/pkgconfig/luajit.pc -------------------------------------------------------------------------------- /recipes-core/luajit/luajit_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luajit/luajit_%.bbappend -------------------------------------------------------------------------------- /recipes-core/luci/files/fix-compile-luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luci/files/fix-compile-luajit.patch -------------------------------------------------------------------------------- /recipes-core/luci/files/fix-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luci/files/fix-compile.patch -------------------------------------------------------------------------------- /recipes-core/luci/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luci/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/luci/luci_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luci/luci_git.bb -------------------------------------------------------------------------------- /recipes-core/luci2/luci2_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/luci2/luci2_git.bb -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/etc/hotplug.d/iface/00-netstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/etc/hotplug.d/iface/00-netstate -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/etc/init.d/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/etc/init.d/network -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/lib/netifd/dhcp.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/lib/netifd/dhcp.script -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/lib/netifd/proto/dhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/lib/netifd/proto/dhcp.sh -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/lib/network/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/lib/network/config.sh -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/sbin/devstatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/sbin/devstatus -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/sbin/ifstatus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/sbin/ifstatus -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/sbin/ifup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/sbin/ifup -------------------------------------------------------------------------------- /recipes-core/netifd/files/files/usr/share/udhcpc/default.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/files/usr/share/udhcpc/default.script -------------------------------------------------------------------------------- /recipes-core/netifd/files/fix-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/files/fix-compile.patch -------------------------------------------------------------------------------- /recipes-core/netifd/netifd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/netifd/netifd_git.bb -------------------------------------------------------------------------------- /recipes-core/packagegroups/packagegroup-openwrt-boot.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/packagegroups/packagegroup-openwrt-boot.bb -------------------------------------------------------------------------------- /recipes-core/procd/files/hotplug-preinit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/procd/files/hotplug-preinit.json -------------------------------------------------------------------------------- /recipes-core/procd/files/hotplug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/procd/files/hotplug.json -------------------------------------------------------------------------------- /recipes-core/procd/files/nand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/procd/files/nand.sh -------------------------------------------------------------------------------- /recipes-core/procd/files/procd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/procd/files/procd.sh -------------------------------------------------------------------------------- /recipes-core/procd/files/reload_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/procd/files/reload_config -------------------------------------------------------------------------------- /recipes-core/procd/procd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/procd/procd_git.bb -------------------------------------------------------------------------------- /recipes-core/rpcd/files/rpcd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/rpcd/files/rpcd.config -------------------------------------------------------------------------------- /recipes-core/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /recipes-core/rpcd/rpcd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/rpcd/rpcd_git.bb -------------------------------------------------------------------------------- /recipes-core/ubox/files/100-insmod-segfault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/ubox/files/100-insmod-segfault.patch -------------------------------------------------------------------------------- /recipes-core/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/ubox/files/log.init -------------------------------------------------------------------------------- /recipes-core/ubox/ubox_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/ubox/ubox_git.bb -------------------------------------------------------------------------------- /recipes-core/ubus/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/ubus/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/ubus/ubus_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/ubus/ubus_git.bb -------------------------------------------------------------------------------- /recipes-core/uci/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uci/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/uci/files/uci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uci/files/uci.sh -------------------------------------------------------------------------------- /recipes-core/uci/uci_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uci/uci_git.bb -------------------------------------------------------------------------------- /recipes-core/uhttpd/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/uhttpd/uhttpd_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd/uhttpd_git.bb -------------------------------------------------------------------------------- /recipes-core/uhttpd2/files/fix-bsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd2/files/fix-bsd.patch -------------------------------------------------------------------------------- /recipes-core/uhttpd2/files/luajit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd2/files/luajit.patch -------------------------------------------------------------------------------- /recipes-core/uhttpd2/files/ubus.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd2/files/ubus.default -------------------------------------------------------------------------------- /recipes-core/uhttpd2/files/uhttpd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd2/files/uhttpd.config -------------------------------------------------------------------------------- /recipes-core/uhttpd2/files/uhttpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd2/files/uhttpd.init -------------------------------------------------------------------------------- /recipes-core/uhttpd2/uhttpd2_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/uhttpd2/uhttpd2_git.bb -------------------------------------------------------------------------------- /recipes-core/update-rc.d/files/single_runlevel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/update-rc.d/files/single_runlevel.patch -------------------------------------------------------------------------------- /recipes-core/update-rc.d/update-rc.d_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/update-rc.d/update-rc.d_%.bbappend -------------------------------------------------------------------------------- /recipes-core/ustream-ssl/ustream-ssl_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MentorEmbedded/meta-openwrt/HEAD/recipes-core/ustream-ssl/ustream-ssl_git.bb --------------------------------------------------------------------------------