├── README.md ├── install.sh └── trunk ├── config ├── configs └── boards │ ├── XZB │ ├── board.h │ ├── board.mk │ ├── kernel-3.4.x.config │ └── libc.config │ └── uclibc-mipsel.config └── user ├── shared ├── defaults.c └── defaults.h └── www ├── Makefile ├── dict └── CN.dict └── n56u_ribbon_fixed └── device-map └── clients.asp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/install.sh -------------------------------------------------------------------------------- /trunk/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/config -------------------------------------------------------------------------------- /trunk/configs/boards/XZB/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/configs/boards/XZB/board.h -------------------------------------------------------------------------------- /trunk/configs/boards/XZB/board.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/configs/boards/XZB/board.mk -------------------------------------------------------------------------------- /trunk/configs/boards/XZB/kernel-3.4.x.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/configs/boards/XZB/kernel-3.4.x.config -------------------------------------------------------------------------------- /trunk/configs/boards/XZB/libc.config: -------------------------------------------------------------------------------- 1 | ../uclibc-mipsel.config -------------------------------------------------------------------------------- /trunk/configs/boards/uclibc-mipsel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/configs/boards/uclibc-mipsel.config -------------------------------------------------------------------------------- /trunk/user/shared/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/user/shared/defaults.c -------------------------------------------------------------------------------- /trunk/user/shared/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/user/shared/defaults.h -------------------------------------------------------------------------------- /trunk/user/www/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/user/www/Makefile -------------------------------------------------------------------------------- /trunk/user/www/dict/CN.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/user/www/dict/CN.dict -------------------------------------------------------------------------------- /trunk/user/www/n56u_ribbon_fixed/device-map/clients.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neophack/XZB/HEAD/trunk/user/www/n56u_ribbon_fixed/device-map/clients.asp --------------------------------------------------------------------------------