├── .gitignore ├── 0001-hw-misc-mt7628-sysctrl-add-mt7628-system-control-emu.patch ├── 0002-hw-intc-mt7628-intc-add-mt7628-interrupt-control-emu.patch ├── 0003-hw-ssi-mt7628-spi-add-mt7628-spi-control-emulation.patch ├── 0004-hw-block-m25p80-add-flash-id-w25q128.patch ├── 0005-hw-net-mt7628-eth-add-mt7628-ethernet-control-emulat.patch ├── 0006-hw-mips-mt7628-add-mt7628-soc-emulation.patch ├── LICENSE ├── README.org └── bootrom ├── Makefile ├── bootrom.ld └── bootrom.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/.gitignore -------------------------------------------------------------------------------- /0001-hw-misc-mt7628-sysctrl-add-mt7628-system-control-emu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/0001-hw-misc-mt7628-sysctrl-add-mt7628-system-control-emu.patch -------------------------------------------------------------------------------- /0002-hw-intc-mt7628-intc-add-mt7628-interrupt-control-emu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/0002-hw-intc-mt7628-intc-add-mt7628-interrupt-control-emu.patch -------------------------------------------------------------------------------- /0003-hw-ssi-mt7628-spi-add-mt7628-spi-control-emulation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/0003-hw-ssi-mt7628-spi-add-mt7628-spi-control-emulation.patch -------------------------------------------------------------------------------- /0004-hw-block-m25p80-add-flash-id-w25q128.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/0004-hw-block-m25p80-add-flash-id-w25q128.patch -------------------------------------------------------------------------------- /0005-hw-net-mt7628-eth-add-mt7628-ethernet-control-emulat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/0005-hw-net-mt7628-eth-add-mt7628-ethernet-control-emulat.patch -------------------------------------------------------------------------------- /0006-hw-mips-mt7628-add-mt7628-soc-emulation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/0006-hw-mips-mt7628-add-mt7628-soc-emulation.patch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/README.org -------------------------------------------------------------------------------- /bootrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/bootrom/Makefile -------------------------------------------------------------------------------- /bootrom/bootrom.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/bootrom/bootrom.ld -------------------------------------------------------------------------------- /bootrom/bootrom.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newluhux/qemu-mt7628/HEAD/bootrom/bootrom.s --------------------------------------------------------------------------------