├── .gitignore ├── .gitmodules ├── Makefile ├── SerialICE ├── Kconfig ├── Makefile ├── README.GDB ├── README.QEMU ├── README.SHELL ├── chipset.c ├── io.h ├── mainboard │ ├── acer_es1-572.c │ ├── amd_serengeti-cheetah.c │ ├── aopen_dxpl-plus.c │ ├── asrock_775i65g.c │ ├── asrock_939a785gmh.c │ ├── asrock_h81m-hds.c │ ├── asrock_p4i65gv.c │ ├── asus_f2a85-m.c │ ├── asus_k8v-x.c │ ├── asus_m2v-mx_se.c │ ├── asus_m4a77td-pro.c │ ├── asus_p2-m3a3200.c │ ├── asus_p2b.c │ ├── asus_p4p800-vm.c │ ├── commell_lv_672.c │ ├── dell_s1850.c │ ├── hp_dl165_g6.c │ ├── intel_d845gbv2.c │ ├── intel_d94x.c │ ├── jetway_nf81_t56n_lf.c │ ├── kontron_986lcd-m.c │ ├── lenovo_x60.c │ ├── msi_ms6178.c │ ├── msi_ms7133.c │ ├── qemu-x86.c │ ├── rca_rm4100.c │ ├── roda_rk886ex.c │ ├── supermicro_x11ssm-f.c │ ├── televideo_tc7010.c │ ├── thomson_ip1000.c │ ├── tyan_s2892.c │ ├── tyan_s2895.c │ ├── tyan_s2912.c │ ├── via_epia_m850.c │ ├── wyse_s50.c │ └── zida_tx98-3d.c ├── patches │ └── serialice-qemu-0.15.0.diff ├── serial.c ├── serialice.c ├── serialice.h ├── serialice.ld ├── simba │ ├── chipset │ │ ├── i82801.lua │ │ ├── intel_bars.lua │ │ ├── intel_smbus.lua │ │ ├── pc80.lua │ │ ├── smbus_host.lua │ │ ├── superio.lua │ │ └── via_bars.lua │ ├── core_io.lua │ ├── cpu.lua │ ├── hooks.lua │ ├── interface.lua │ ├── mainboard │ │ ├── acer_es1_572.lua │ │ ├── aopen_dxpl_plus.lua │ │ ├── asrock_775i65g.lua │ │ ├── asus_p4p800_vm.lua │ │ ├── commell_lv_672.lua │ │ ├── conroexfire_esata2.lua │ │ ├── intel_d845gbv2.lua │ │ ├── intel_d946gzis.lua │ │ ├── lenovo_x61.lua │ │ ├── msi_ms7133.lua │ │ ├── supermicro_x11ssm_f.lua │ │ └── via_epia_m_850.lua │ ├── memory.lua │ ├── mmio.lua │ ├── output.lua │ ├── pci_cfg.lua │ ├── replay.lua │ ├── serialice.lua │ └── user_env.lua ├── southbridge │ ├── amd-sbxxx.c │ ├── intel-ich7.c │ └── intel-sunrise.c ├── start.S ├── superio │ ├── aspeed-ast.c │ ├── fintek-f71869ad.c │ ├── ite-it8718f.c │ ├── nuvoton-nct6776.c │ └── winbond-w83627thg.c ├── types.h └── util │ ├── kconfig │ ├── Makefile │ ├── POTFILES.in │ ├── check.sh │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── gconf.c │ ├── gconf.glade │ ├── images.c │ ├── kconfig_load.c │ ├── kxgettext.c │ ├── lex.zconf.c_shipped │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── BIG.FAT.WARNING │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── qconf.cc │ ├── qconf.h │ ├── regex.c │ ├── regex.h │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.tab.c_shipped │ └── zconf.y │ ├── romcc.c │ └── xmmstack.c └── util ├── gitconfig ├── commit-msg └── pre-commit └── lint ├── lint-000-license-headers └── lint-stable-003-whitespace /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/Makefile -------------------------------------------------------------------------------- /SerialICE/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/Kconfig -------------------------------------------------------------------------------- /SerialICE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/Makefile -------------------------------------------------------------------------------- /SerialICE/README.GDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/README.GDB -------------------------------------------------------------------------------- /SerialICE/README.QEMU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/README.QEMU -------------------------------------------------------------------------------- /SerialICE/README.SHELL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/README.SHELL -------------------------------------------------------------------------------- /SerialICE/chipset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/chipset.c -------------------------------------------------------------------------------- /SerialICE/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/io.h -------------------------------------------------------------------------------- /SerialICE/mainboard/acer_es1-572.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/acer_es1-572.c -------------------------------------------------------------------------------- /SerialICE/mainboard/amd_serengeti-cheetah.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/amd_serengeti-cheetah.c -------------------------------------------------------------------------------- /SerialICE/mainboard/aopen_dxpl-plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/aopen_dxpl-plus.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asrock_775i65g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asrock_775i65g.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asrock_939a785gmh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asrock_939a785gmh.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asrock_h81m-hds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asrock_h81m-hds.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asrock_p4i65gv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asrock_p4i65gv.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_f2a85-m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_f2a85-m.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_k8v-x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_k8v-x.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_m2v-mx_se.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_m2v-mx_se.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_m4a77td-pro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_m4a77td-pro.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_p2-m3a3200.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_p2-m3a3200.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_p2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_p2b.c -------------------------------------------------------------------------------- /SerialICE/mainboard/asus_p4p800-vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/asus_p4p800-vm.c -------------------------------------------------------------------------------- /SerialICE/mainboard/commell_lv_672.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/commell_lv_672.c -------------------------------------------------------------------------------- /SerialICE/mainboard/dell_s1850.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/dell_s1850.c -------------------------------------------------------------------------------- /SerialICE/mainboard/hp_dl165_g6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/hp_dl165_g6.c -------------------------------------------------------------------------------- /SerialICE/mainboard/intel_d845gbv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/intel_d845gbv2.c -------------------------------------------------------------------------------- /SerialICE/mainboard/intel_d94x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/intel_d94x.c -------------------------------------------------------------------------------- /SerialICE/mainboard/jetway_nf81_t56n_lf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/jetway_nf81_t56n_lf.c -------------------------------------------------------------------------------- /SerialICE/mainboard/kontron_986lcd-m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/kontron_986lcd-m.c -------------------------------------------------------------------------------- /SerialICE/mainboard/lenovo_x60.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/lenovo_x60.c -------------------------------------------------------------------------------- /SerialICE/mainboard/msi_ms6178.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/msi_ms6178.c -------------------------------------------------------------------------------- /SerialICE/mainboard/msi_ms7133.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/msi_ms7133.c -------------------------------------------------------------------------------- /SerialICE/mainboard/qemu-x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/qemu-x86.c -------------------------------------------------------------------------------- /SerialICE/mainboard/rca_rm4100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/rca_rm4100.c -------------------------------------------------------------------------------- /SerialICE/mainboard/roda_rk886ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/roda_rk886ex.c -------------------------------------------------------------------------------- /SerialICE/mainboard/supermicro_x11ssm-f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/supermicro_x11ssm-f.c -------------------------------------------------------------------------------- /SerialICE/mainboard/televideo_tc7010.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/televideo_tc7010.c -------------------------------------------------------------------------------- /SerialICE/mainboard/thomson_ip1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/thomson_ip1000.c -------------------------------------------------------------------------------- /SerialICE/mainboard/tyan_s2892.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/tyan_s2892.c -------------------------------------------------------------------------------- /SerialICE/mainboard/tyan_s2895.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/tyan_s2895.c -------------------------------------------------------------------------------- /SerialICE/mainboard/tyan_s2912.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/tyan_s2912.c -------------------------------------------------------------------------------- /SerialICE/mainboard/via_epia_m850.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/via_epia_m850.c -------------------------------------------------------------------------------- /SerialICE/mainboard/wyse_s50.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/wyse_s50.c -------------------------------------------------------------------------------- /SerialICE/mainboard/zida_tx98-3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/mainboard/zida_tx98-3d.c -------------------------------------------------------------------------------- /SerialICE/patches/serialice-qemu-0.15.0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/patches/serialice-qemu-0.15.0.diff -------------------------------------------------------------------------------- /SerialICE/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/serial.c -------------------------------------------------------------------------------- /SerialICE/serialice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/serialice.c -------------------------------------------------------------------------------- /SerialICE/serialice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/serialice.h -------------------------------------------------------------------------------- /SerialICE/serialice.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/serialice.ld -------------------------------------------------------------------------------- /SerialICE/simba/chipset/i82801.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/i82801.lua -------------------------------------------------------------------------------- /SerialICE/simba/chipset/intel_bars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/intel_bars.lua -------------------------------------------------------------------------------- /SerialICE/simba/chipset/intel_smbus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/intel_smbus.lua -------------------------------------------------------------------------------- /SerialICE/simba/chipset/pc80.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/pc80.lua -------------------------------------------------------------------------------- /SerialICE/simba/chipset/smbus_host.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/smbus_host.lua -------------------------------------------------------------------------------- /SerialICE/simba/chipset/superio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/superio.lua -------------------------------------------------------------------------------- /SerialICE/simba/chipset/via_bars.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/chipset/via_bars.lua -------------------------------------------------------------------------------- /SerialICE/simba/core_io.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/core_io.lua -------------------------------------------------------------------------------- /SerialICE/simba/cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/cpu.lua -------------------------------------------------------------------------------- /SerialICE/simba/hooks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/hooks.lua -------------------------------------------------------------------------------- /SerialICE/simba/interface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/interface.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/acer_es1_572.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/acer_es1_572.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/aopen_dxpl_plus.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/aopen_dxpl_plus.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/asrock_775i65g.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/asrock_775i65g.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/asus_p4p800_vm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/asus_p4p800_vm.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/commell_lv_672.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/commell_lv_672.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/conroexfire_esata2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/conroexfire_esata2.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/intel_d845gbv2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/intel_d845gbv2.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/intel_d946gzis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/intel_d946gzis.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/lenovo_x61.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/lenovo_x61.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/msi_ms7133.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/msi_ms7133.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/supermicro_x11ssm_f.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/supermicro_x11ssm_f.lua -------------------------------------------------------------------------------- /SerialICE/simba/mainboard/via_epia_m_850.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mainboard/via_epia_m_850.lua -------------------------------------------------------------------------------- /SerialICE/simba/memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/memory.lua -------------------------------------------------------------------------------- /SerialICE/simba/mmio.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/mmio.lua -------------------------------------------------------------------------------- /SerialICE/simba/output.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/output.lua -------------------------------------------------------------------------------- /SerialICE/simba/pci_cfg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/pci_cfg.lua -------------------------------------------------------------------------------- /SerialICE/simba/replay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/replay.lua -------------------------------------------------------------------------------- /SerialICE/simba/serialice.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/serialice.lua -------------------------------------------------------------------------------- /SerialICE/simba/user_env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/simba/user_env.lua -------------------------------------------------------------------------------- /SerialICE/southbridge/amd-sbxxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/southbridge/amd-sbxxx.c -------------------------------------------------------------------------------- /SerialICE/southbridge/intel-ich7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/southbridge/intel-ich7.c -------------------------------------------------------------------------------- /SerialICE/southbridge/intel-sunrise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/southbridge/intel-sunrise.c -------------------------------------------------------------------------------- /SerialICE/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/start.S -------------------------------------------------------------------------------- /SerialICE/superio/aspeed-ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/superio/aspeed-ast.c -------------------------------------------------------------------------------- /SerialICE/superio/fintek-f71869ad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/superio/fintek-f71869ad.c -------------------------------------------------------------------------------- /SerialICE/superio/ite-it8718f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/superio/ite-it8718f.c -------------------------------------------------------------------------------- /SerialICE/superio/nuvoton-nct6776.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/superio/nuvoton-nct6776.c -------------------------------------------------------------------------------- /SerialICE/superio/winbond-w83627thg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/superio/winbond-w83627thg.c -------------------------------------------------------------------------------- /SerialICE/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/types.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/Makefile -------------------------------------------------------------------------------- /SerialICE/util/kconfig/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/POTFILES.in -------------------------------------------------------------------------------- /SerialICE/util/kconfig/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/check.sh -------------------------------------------------------------------------------- /SerialICE/util/kconfig/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/conf.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/confdata.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/expr.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/expr.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/gconf.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/gconf.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/gconf.glade -------------------------------------------------------------------------------- /SerialICE/util/kconfig/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/images.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/kconfig_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/kconfig_load.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/kxgettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/kxgettext.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lex.zconf.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lex.zconf.c_shipped -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lkc.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lkc_proto.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/BIG.FAT.WARNING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/BIG.FAT.WARNING -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/check-lxdialog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/check-lxdialog.sh -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/checklist.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/dialog.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/inputbox.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/menubox.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/textbox.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/util.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/lxdialog/yesno.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/mconf.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/menu.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/qconf.cc -------------------------------------------------------------------------------- /SerialICE/util/kconfig/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/qconf.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/regex.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/regex.h -------------------------------------------------------------------------------- /SerialICE/util/kconfig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/symbol.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/util.c -------------------------------------------------------------------------------- /SerialICE/util/kconfig/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/zconf.gperf -------------------------------------------------------------------------------- /SerialICE/util/kconfig/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/zconf.hash.c_shipped -------------------------------------------------------------------------------- /SerialICE/util/kconfig/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/zconf.l -------------------------------------------------------------------------------- /SerialICE/util/kconfig/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/zconf.tab.c_shipped -------------------------------------------------------------------------------- /SerialICE/util/kconfig/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/kconfig/zconf.y -------------------------------------------------------------------------------- /SerialICE/util/romcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/romcc.c -------------------------------------------------------------------------------- /SerialICE/util/xmmstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/SerialICE/util/xmmstack.c -------------------------------------------------------------------------------- /util/gitconfig/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/util/gitconfig/commit-msg -------------------------------------------------------------------------------- /util/gitconfig/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec make lint-stable 3 | -------------------------------------------------------------------------------- /util/lint/lint-000-license-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/util/lint/lint-000-license-headers -------------------------------------------------------------------------------- /util/lint/lint-stable-003-whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coreboot/serialice/HEAD/util/lint/lint-stable-003-whitespace --------------------------------------------------------------------------------