├── .editorconfig ├── .gitignore ├── .shellspec ├── .travis.yml ├── LICENSE ├── README.md ├── common ├── bootsplash_esc_menu_1024x768.jpg ├── config_and_make.sh ├── copy_bootsplash.sh ├── download_and_extract_mrc.sh ├── download_coreboot.sh ├── extract_stockbios.sh └── variables.sh ├── flash.sh ├── m920q ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt ├── spec ├── build_spec.sh ├── common │ ├── config_and_make_spec.sh │ ├── copy_bootsplash_spec.sh │ ├── download_coreboot_spec.sh │ ├── extract_stockbios_spec.sh │ └── variables_spec.sh ├── coverage.sh ├── flash_spec.sh ├── spec_helper.sh ├── t430 │ └── flashrom_spec.sh ├── w530 │ └── flashrom_spec.sh ├── x220 │ └── flashrom_spec.sh ├── x230 │ └── flashrom_spec.sh └── x230t │ └── flashrom_spec.sh ├── t430 ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt ├── w530 ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt ├── w541 ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt ├── x220 ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh ├── layout.txt └── stock_bios │ └── .gitignore ├── x230 ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt ├── x230_edp ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt └── x230t ├── README.md ├── compile.sh ├── defconfig ├── flashrom.sh └── layout.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | */build/ 2 | */stock_bios/ 3 | coreboot_* 4 | coverage/ 5 | -------------------------------------------------------------------------------- /.shellspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/.shellspec -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/README.md -------------------------------------------------------------------------------- /common/bootsplash_esc_menu_1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/bootsplash_esc_menu_1024x768.jpg -------------------------------------------------------------------------------- /common/config_and_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/config_and_make.sh -------------------------------------------------------------------------------- /common/copy_bootsplash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/copy_bootsplash.sh -------------------------------------------------------------------------------- /common/download_and_extract_mrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/download_and_extract_mrc.sh -------------------------------------------------------------------------------- /common/download_coreboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/download_coreboot.sh -------------------------------------------------------------------------------- /common/extract_stockbios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/extract_stockbios.sh -------------------------------------------------------------------------------- /common/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/common/variables.sh -------------------------------------------------------------------------------- /flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/flash.sh -------------------------------------------------------------------------------- /m920q/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/m920q/README.md -------------------------------------------------------------------------------- /m920q/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/m920q/compile.sh -------------------------------------------------------------------------------- /m920q/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/m920q/defconfig -------------------------------------------------------------------------------- /m920q/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/m920q/flashrom.sh -------------------------------------------------------------------------------- /m920q/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/m920q/layout.txt -------------------------------------------------------------------------------- /spec/build_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/build_spec.sh -------------------------------------------------------------------------------- /spec/common/config_and_make_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/common/config_and_make_spec.sh -------------------------------------------------------------------------------- /spec/common/copy_bootsplash_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/common/copy_bootsplash_spec.sh -------------------------------------------------------------------------------- /spec/common/download_coreboot_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/common/download_coreboot_spec.sh -------------------------------------------------------------------------------- /spec/common/extract_stockbios_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/common/extract_stockbios_spec.sh -------------------------------------------------------------------------------- /spec/common/variables_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/common/variables_spec.sh -------------------------------------------------------------------------------- /spec/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/coverage.sh -------------------------------------------------------------------------------- /spec/flash_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/flash_spec.sh -------------------------------------------------------------------------------- /spec/spec_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/spec_helper.sh -------------------------------------------------------------------------------- /spec/t430/flashrom_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/t430/flashrom_spec.sh -------------------------------------------------------------------------------- /spec/w530/flashrom_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/w530/flashrom_spec.sh -------------------------------------------------------------------------------- /spec/x220/flashrom_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/x220/flashrom_spec.sh -------------------------------------------------------------------------------- /spec/x230/flashrom_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/x230/flashrom_spec.sh -------------------------------------------------------------------------------- /spec/x230t/flashrom_spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/spec/x230t/flashrom_spec.sh -------------------------------------------------------------------------------- /t430/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/t430/README.md -------------------------------------------------------------------------------- /t430/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/t430/compile.sh -------------------------------------------------------------------------------- /t430/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/t430/defconfig -------------------------------------------------------------------------------- /t430/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/t430/flashrom.sh -------------------------------------------------------------------------------- /t430/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/t430/layout.txt -------------------------------------------------------------------------------- /w530/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w530/README.md -------------------------------------------------------------------------------- /w530/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w530/compile.sh -------------------------------------------------------------------------------- /w530/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w530/defconfig -------------------------------------------------------------------------------- /w530/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w530/flashrom.sh -------------------------------------------------------------------------------- /w530/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w530/layout.txt -------------------------------------------------------------------------------- /w541/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w541/README.md -------------------------------------------------------------------------------- /w541/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w541/compile.sh -------------------------------------------------------------------------------- /w541/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w541/defconfig -------------------------------------------------------------------------------- /w541/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w541/flashrom.sh -------------------------------------------------------------------------------- /w541/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/w541/layout.txt -------------------------------------------------------------------------------- /x220/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x220/README.md -------------------------------------------------------------------------------- /x220/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x220/compile.sh -------------------------------------------------------------------------------- /x220/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x220/defconfig -------------------------------------------------------------------------------- /x220/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x220/flashrom.sh -------------------------------------------------------------------------------- /x220/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x220/layout.txt -------------------------------------------------------------------------------- /x220/stock_bios/.gitignore: -------------------------------------------------------------------------------- 1 | stock_bios.bin 2 | 3 | -------------------------------------------------------------------------------- /x230/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230/README.md -------------------------------------------------------------------------------- /x230/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230/compile.sh -------------------------------------------------------------------------------- /x230/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230/defconfig -------------------------------------------------------------------------------- /x230/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230/flashrom.sh -------------------------------------------------------------------------------- /x230/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230/layout.txt -------------------------------------------------------------------------------- /x230_edp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230_edp/README.md -------------------------------------------------------------------------------- /x230_edp/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230_edp/compile.sh -------------------------------------------------------------------------------- /x230_edp/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230_edp/defconfig -------------------------------------------------------------------------------- /x230_edp/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230_edp/flashrom.sh -------------------------------------------------------------------------------- /x230_edp/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230_edp/layout.txt -------------------------------------------------------------------------------- /x230t/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230t/README.md -------------------------------------------------------------------------------- /x230t/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230t/compile.sh -------------------------------------------------------------------------------- /x230t/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230t/defconfig -------------------------------------------------------------------------------- /x230t/flashrom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230t/flashrom.sh -------------------------------------------------------------------------------- /x230t/layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thrilleratplay/coreboot-builder-scripts/HEAD/x230t/layout.txt --------------------------------------------------------------------------------