├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── firmware └── mwl8k │ ├── fmimage_8366.fw │ ├── fmimage_8366_ap-2.fw │ ├── fmimage_8366_ap-3.fw │ └── helper_8366.fw ├── patches ├── openwrt-3500.patch ├── openwrt-4500.patch ├── openwrt-alt.patch ├── openwrt-pri.patch ├── openwrt.patch └── usb.patch └── test.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/README.md -------------------------------------------------------------------------------- /firmware/mwl8k/fmimage_8366.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/firmware/mwl8k/fmimage_8366.fw -------------------------------------------------------------------------------- /firmware/mwl8k/fmimage_8366_ap-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/firmware/mwl8k/fmimage_8366_ap-2.fw -------------------------------------------------------------------------------- /firmware/mwl8k/fmimage_8366_ap-3.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/firmware/mwl8k/fmimage_8366_ap-3.fw -------------------------------------------------------------------------------- /firmware/mwl8k/helper_8366.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/firmware/mwl8k/helper_8366.fw -------------------------------------------------------------------------------- /patches/openwrt-3500.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/patches/openwrt-3500.patch -------------------------------------------------------------------------------- /patches/openwrt-4500.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/patches/openwrt-4500.patch -------------------------------------------------------------------------------- /patches/openwrt-alt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/patches/openwrt-alt.patch -------------------------------------------------------------------------------- /patches/openwrt-pri.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/patches/openwrt-pri.patch -------------------------------------------------------------------------------- /patches/openwrt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/patches/openwrt.patch -------------------------------------------------------------------------------- /patches/usb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/patches/usb.patch -------------------------------------------------------------------------------- /test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cilynx/Candyhouse-Linux/HEAD/test.log --------------------------------------------------------------------------------