├── .gitignore ├── LICENSE ├── README.md ├── output ├── cmdline.txt ├── cmdline.txt.ipv6ll └── config.txt └── scriptexecute ├── Config.in ├── board ├── kernelconfig-cm4.armv7 ├── kernelconfig-hybrid.armv67 ├── kernelconfig-scriptexecute.fragment └── overlay │ └── etc │ ├── default │ └── urandom │ ├── init.d │ └── S99scriptexec │ └── random-seed ├── configs ├── scriptexecute_cm4_defconfig └── scriptexecute_cmhybrid_defconfig ├── external.desc ├── external.mk └── package └── rpi-firmware-custom ├── Config.in └── rpi-firmware-custom.mk /.gitignore: -------------------------------------------------------------------------------- 1 | /buildroot-2017.02 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/README.md -------------------------------------------------------------------------------- /output/cmdline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/output/cmdline.txt -------------------------------------------------------------------------------- /output/cmdline.txt.ipv6ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/output/cmdline.txt.ipv6ll -------------------------------------------------------------------------------- /output/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/output/config.txt -------------------------------------------------------------------------------- /scriptexecute/Config.in: -------------------------------------------------------------------------------- 1 | source "$BR2_EXTERNAL_SCRIPTEXECUTE_PATH/package/rpi-firmware-custom/Config.in" 2 | -------------------------------------------------------------------------------- /scriptexecute/board/kernelconfig-cm4.armv7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/board/kernelconfig-cm4.armv7 -------------------------------------------------------------------------------- /scriptexecute/board/kernelconfig-hybrid.armv67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/board/kernelconfig-hybrid.armv67 -------------------------------------------------------------------------------- /scriptexecute/board/kernelconfig-scriptexecute.fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/board/kernelconfig-scriptexecute.fragment -------------------------------------------------------------------------------- /scriptexecute/board/overlay/etc/default/urandom: -------------------------------------------------------------------------------- 1 | URANDOM_SEED="/etc/random-seed" 2 | -------------------------------------------------------------------------------- /scriptexecute/board/overlay/etc/init.d/S99scriptexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/board/overlay/etc/init.d/S99scriptexec -------------------------------------------------------------------------------- /scriptexecute/board/overlay/etc/random-seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/board/overlay/etc/random-seed -------------------------------------------------------------------------------- /scriptexecute/configs/scriptexecute_cm4_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/configs/scriptexecute_cm4_defconfig -------------------------------------------------------------------------------- /scriptexecute/configs/scriptexecute_cmhybrid_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/configs/scriptexecute_cmhybrid_defconfig -------------------------------------------------------------------------------- /scriptexecute/external.desc: -------------------------------------------------------------------------------- 1 | name: SCRIPTEXECUTE 2 | -------------------------------------------------------------------------------- /scriptexecute/external.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/external.mk -------------------------------------------------------------------------------- /scriptexecute/package/rpi-firmware-custom/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/package/rpi-firmware-custom/Config.in -------------------------------------------------------------------------------- /scriptexecute/package/rpi-firmware-custom/rpi-firmware-custom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypi/scriptexecutor/HEAD/scriptexecute/package/rpi-firmware-custom/rpi-firmware-custom.mk --------------------------------------------------------------------------------