├── .circleci └── config.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CHANGELOG_fr.md ├── LICENSE ├── README.md ├── config ├── arch_x86_64 ├── image_busybox ├── image_common ├── image_i18n ├── kmod_common ├── kmod_network ├── kmod_usb ├── package_include ├── package_optionnal └── package_overthebox ├── root ├── etc │ ├── banner │ ├── board.d │ │ ├── 01_leds │ │ └── 02_network │ ├── i18n │ │ └── fr-pc.kmap │ ├── rc.button │ │ └── power │ ├── uci-defaults │ │ └── uuid.defaults │ └── udhcpc.user └── lib │ └── preinit │ ├── 00_recovery │ └── 90_inittab └── sign.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | sdk 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/CHANGELOG_fr.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/README.md -------------------------------------------------------------------------------- /config/arch_x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/arch_x86_64 -------------------------------------------------------------------------------- /config/image_busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/image_busybox -------------------------------------------------------------------------------- /config/image_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/image_common -------------------------------------------------------------------------------- /config/image_i18n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/image_i18n -------------------------------------------------------------------------------- /config/kmod_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/kmod_common -------------------------------------------------------------------------------- /config/kmod_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/kmod_network -------------------------------------------------------------------------------- /config/kmod_usb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/kmod_usb -------------------------------------------------------------------------------- /config/package_include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/package_include -------------------------------------------------------------------------------- /config/package_optionnal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/package_optionnal -------------------------------------------------------------------------------- /config/package_overthebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/config/package_overthebox -------------------------------------------------------------------------------- /root/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/banner -------------------------------------------------------------------------------- /root/etc/board.d/01_leds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/board.d/01_leds -------------------------------------------------------------------------------- /root/etc/board.d/02_network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/board.d/02_network -------------------------------------------------------------------------------- /root/etc/i18n/fr-pc.kmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/i18n/fr-pc.kmap -------------------------------------------------------------------------------- /root/etc/rc.button/power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/rc.button/power -------------------------------------------------------------------------------- /root/etc/uci-defaults/uuid.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/uci-defaults/uuid.defaults -------------------------------------------------------------------------------- /root/etc/udhcpc.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/etc/udhcpc.user -------------------------------------------------------------------------------- /root/lib/preinit/00_recovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/lib/preinit/00_recovery -------------------------------------------------------------------------------- /root/lib/preinit/90_inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/root/lib/preinit/90_inittab -------------------------------------------------------------------------------- /sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovh/overthebox/HEAD/sign.sh --------------------------------------------------------------------------------