├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── Makefile ├── configs ├── boards │ ├── ebf_imx_6ull_mini.conf │ ├── ebf_imx_6ull_pro.conf │ ├── ebf_imx_8m_mini.conf │ ├── ebf_rockchip_3328.conf │ ├── ebf_rockchip_3399.conf │ └── ebf_stm_mp157_star.conf ├── common.conf ├── functions │ ├── build │ ├── common-functions │ ├── functions │ └── git-repo └── user.conf ├── doc ├── image-builder_2.0 构建镜像过程.md ├── image-builder_2.0编译过程.png └── setting.md ├── env ├── ci.sh └── setenv.sh ├── firmware └── gpu │ └── galcore.ko ├── local_directory └── user_files_example ├── local_pkg ├── deb-example.deb └── ebf-boardtest_0.9.0_armhf.deb ├── publish └── fire-imx-stable.sh ├── readme.md ├── scripts ├── RootStock-NG.sh ├── build.sh ├── chroot.sh ├── common.sh ├── create_image.sh ├── create_imx8mm_uboot_bin.sh ├── create_rk3328_uboot_bin.sh ├── create_rk3399_uboot_bin.sh ├── create_rk3399_uboot_bin_common.sh ├── debootstrap.sh └── install_dependencies.sh ├── target ├── boot │ ├── autorun.inf │ └── fire.ico ├── init_scripts │ ├── actlogo.service │ ├── autowifi.service │ ├── bootlogo.service │ └── systemd-generic-board-startup.service ├── keyring │ ├── cacert.pem │ ├── deb.dovetail-automata.com-keyring.asc │ ├── deb.machinekit.io.pubkey.asc │ ├── keyfile │ ├── nodesource.gpg.key │ ├── packages.namniart.com-archive-keyring.asc │ ├── repos.azulsystems.com.pubkey.asc │ ├── repos.rcn-ee.net-archive-keyring.asc │ ├── repos.seeed-archive-keyring.asc │ └── ros-archive-keyring.asc └── other │ └── zz-uenv_txt └── tools ├── create_sdcard_from_flashlayout.sh ├── hwpack ├── FlashLayout_sdcard_stm32mp157c-dk2-basic.tsv └── boot.scr.cmd ├── imxv7_setup_sdcard.sh ├── setup_sdcard.sh └── stm32mp1_setup_sdcard.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/Makefile -------------------------------------------------------------------------------- /configs/boards/ebf_imx_6ull_mini.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/boards/ebf_imx_6ull_mini.conf -------------------------------------------------------------------------------- /configs/boards/ebf_imx_6ull_pro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/boards/ebf_imx_6ull_pro.conf -------------------------------------------------------------------------------- /configs/boards/ebf_imx_8m_mini.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/boards/ebf_imx_8m_mini.conf -------------------------------------------------------------------------------- /configs/boards/ebf_rockchip_3328.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/boards/ebf_rockchip_3328.conf -------------------------------------------------------------------------------- /configs/boards/ebf_rockchip_3399.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/boards/ebf_rockchip_3399.conf -------------------------------------------------------------------------------- /configs/boards/ebf_stm_mp157_star.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/boards/ebf_stm_mp157_star.conf -------------------------------------------------------------------------------- /configs/common.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/common.conf -------------------------------------------------------------------------------- /configs/functions/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/functions/build -------------------------------------------------------------------------------- /configs/functions/common-functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/functions/common-functions -------------------------------------------------------------------------------- /configs/functions/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/functions/functions -------------------------------------------------------------------------------- /configs/functions/git-repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/functions/git-repo -------------------------------------------------------------------------------- /configs/user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/configs/user.conf -------------------------------------------------------------------------------- /doc/image-builder_2.0 构建镜像过程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/doc/image-builder_2.0 构建镜像过程.md -------------------------------------------------------------------------------- /doc/image-builder_2.0编译过程.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/doc/image-builder_2.0编译过程.png -------------------------------------------------------------------------------- /doc/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/doc/setting.md -------------------------------------------------------------------------------- /env/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/env/ci.sh -------------------------------------------------------------------------------- /env/setenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/env/setenv.sh -------------------------------------------------------------------------------- /firmware/gpu/galcore.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/firmware/gpu/galcore.ko -------------------------------------------------------------------------------- /local_directory/user_files_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/local_directory/user_files_example -------------------------------------------------------------------------------- /local_pkg/deb-example.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/local_pkg/deb-example.deb -------------------------------------------------------------------------------- /local_pkg/ebf-boardtest_0.9.0_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/local_pkg/ebf-boardtest_0.9.0_armhf.deb -------------------------------------------------------------------------------- /publish/fire-imx-stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/publish/fire-imx-stable.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/RootStock-NG.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/RootStock-NG.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/chroot.sh -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/create_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/create_image.sh -------------------------------------------------------------------------------- /scripts/create_imx8mm_uboot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/create_imx8mm_uboot_bin.sh -------------------------------------------------------------------------------- /scripts/create_rk3328_uboot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/create_rk3328_uboot_bin.sh -------------------------------------------------------------------------------- /scripts/create_rk3399_uboot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/create_rk3399_uboot_bin.sh -------------------------------------------------------------------------------- /scripts/create_rk3399_uboot_bin_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/create_rk3399_uboot_bin_common.sh -------------------------------------------------------------------------------- /scripts/debootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/debootstrap.sh -------------------------------------------------------------------------------- /scripts/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/scripts/install_dependencies.sh -------------------------------------------------------------------------------- /target/boot/autorun.inf: -------------------------------------------------------------------------------- 1 | [autorun] 2 | ICON=/boot/fire.ico,0 -------------------------------------------------------------------------------- /target/boot/fire.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/boot/fire.ico -------------------------------------------------------------------------------- /target/init_scripts/actlogo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/init_scripts/actlogo.service -------------------------------------------------------------------------------- /target/init_scripts/autowifi.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/init_scripts/autowifi.service -------------------------------------------------------------------------------- /target/init_scripts/bootlogo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/init_scripts/bootlogo.service -------------------------------------------------------------------------------- /target/init_scripts/systemd-generic-board-startup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/init_scripts/systemd-generic-board-startup.service -------------------------------------------------------------------------------- /target/keyring/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/cacert.pem -------------------------------------------------------------------------------- /target/keyring/deb.dovetail-automata.com-keyring.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/deb.dovetail-automata.com-keyring.asc -------------------------------------------------------------------------------- /target/keyring/deb.machinekit.io.pubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/deb.machinekit.io.pubkey.asc -------------------------------------------------------------------------------- /target/keyring/keyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/keyfile -------------------------------------------------------------------------------- /target/keyring/nodesource.gpg.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/nodesource.gpg.key -------------------------------------------------------------------------------- /target/keyring/packages.namniart.com-archive-keyring.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/packages.namniart.com-archive-keyring.asc -------------------------------------------------------------------------------- /target/keyring/repos.azulsystems.com.pubkey.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/repos.azulsystems.com.pubkey.asc -------------------------------------------------------------------------------- /target/keyring/repos.rcn-ee.net-archive-keyring.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/repos.rcn-ee.net-archive-keyring.asc -------------------------------------------------------------------------------- /target/keyring/repos.seeed-archive-keyring.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/repos.seeed-archive-keyring.asc -------------------------------------------------------------------------------- /target/keyring/ros-archive-keyring.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/keyring/ros-archive-keyring.asc -------------------------------------------------------------------------------- /target/other/zz-uenv_txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/target/other/zz-uenv_txt -------------------------------------------------------------------------------- /tools/create_sdcard_from_flashlayout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/tools/create_sdcard_from_flashlayout.sh -------------------------------------------------------------------------------- /tools/hwpack/FlashLayout_sdcard_stm32mp157c-dk2-basic.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/tools/hwpack/FlashLayout_sdcard_stm32mp157c-dk2-basic.tsv -------------------------------------------------------------------------------- /tools/hwpack/boot.scr.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/tools/hwpack/boot.scr.cmd -------------------------------------------------------------------------------- /tools/imxv7_setup_sdcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/tools/imxv7_setup_sdcard.sh -------------------------------------------------------------------------------- /tools/setup_sdcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/tools/setup_sdcard.sh -------------------------------------------------------------------------------- /tools/stm32mp1_setup_sdcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Embedfire/ebf-image-builder/HEAD/tools/stm32mp1_setup_sdcard.sh --------------------------------------------------------------------------------