├── .gitmodules ├── AUTHORS ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── chroot-bin ├── crouton-noroot ├── croutonclip ├── croutoncycle ├── croutonfindnacl ├── croutonnotify ├── croutonpowerd ├── croutontriggerd ├── croutonurlhandler ├── croutonversion ├── croutonwheel ├── host-dbus ├── setres ├── startxwayland └── volume ├── host-bin ├── crash_reporter_wrapper ├── delete-chroot ├── edit-chroot ├── enter-chroot ├── mount-chroot └── unmount-chroot ├── installer ├── crouton ├── fedora │ ├── bootstrap │ ├── defaults │ ├── fedoralogo.txt │ ├── getrelease.sh │ ├── group │ ├── gshadow │ ├── passwd │ ├── prepare │ ├── releases │ └── shadow ├── functions ├── main.sh └── prepare.sh ├── src └── .gitkeep └── targets ├── common ├── fedora └── post-common /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Google, Inc 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/README.md -------------------------------------------------------------------------------- /chroot-bin/crouton-noroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/crouton-noroot -------------------------------------------------------------------------------- /chroot-bin/croutonclip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonclip -------------------------------------------------------------------------------- /chroot-bin/croutoncycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutoncycle -------------------------------------------------------------------------------- /chroot-bin/croutonfindnacl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonfindnacl -------------------------------------------------------------------------------- /chroot-bin/croutonnotify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonnotify -------------------------------------------------------------------------------- /chroot-bin/croutonpowerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonpowerd -------------------------------------------------------------------------------- /chroot-bin/croutontriggerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutontriggerd -------------------------------------------------------------------------------- /chroot-bin/croutonurlhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonurlhandler -------------------------------------------------------------------------------- /chroot-bin/croutonversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonversion -------------------------------------------------------------------------------- /chroot-bin/croutonwheel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/croutonwheel -------------------------------------------------------------------------------- /chroot-bin/host-dbus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/host-dbus -------------------------------------------------------------------------------- /chroot-bin/setres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/setres -------------------------------------------------------------------------------- /chroot-bin/startxwayland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/startxwayland -------------------------------------------------------------------------------- /chroot-bin/volume: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/chroot-bin/volume -------------------------------------------------------------------------------- /host-bin/crash_reporter_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/host-bin/crash_reporter_wrapper -------------------------------------------------------------------------------- /host-bin/delete-chroot: -------------------------------------------------------------------------------- 1 | edit-chroot -------------------------------------------------------------------------------- /host-bin/edit-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/host-bin/edit-chroot -------------------------------------------------------------------------------- /host-bin/enter-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/host-bin/enter-chroot -------------------------------------------------------------------------------- /host-bin/mount-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/host-bin/mount-chroot -------------------------------------------------------------------------------- /host-bin/unmount-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/host-bin/unmount-chroot -------------------------------------------------------------------------------- /installer/crouton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/crouton -------------------------------------------------------------------------------- /installer/fedora/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/bootstrap -------------------------------------------------------------------------------- /installer/fedora/defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/defaults -------------------------------------------------------------------------------- /installer/fedora/fedoralogo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/fedoralogo.txt -------------------------------------------------------------------------------- /installer/fedora/getrelease.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/getrelease.sh -------------------------------------------------------------------------------- /installer/fedora/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/group -------------------------------------------------------------------------------- /installer/fedora/gshadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/gshadow -------------------------------------------------------------------------------- /installer/fedora/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/passwd -------------------------------------------------------------------------------- /installer/fedora/prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/prepare -------------------------------------------------------------------------------- /installer/fedora/releases: -------------------------------------------------------------------------------- 1 | fedora 2 | -------------------------------------------------------------------------------- /installer/fedora/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/fedora/shadow -------------------------------------------------------------------------------- /installer/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/functions -------------------------------------------------------------------------------- /installer/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/main.sh -------------------------------------------------------------------------------- /installer/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/installer/prepare.sh -------------------------------------------------------------------------------- /src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /targets/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/targets/common -------------------------------------------------------------------------------- /targets/fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/targets/fedora -------------------------------------------------------------------------------- /targets/post-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmilosev/crouton-fedora-wayland/HEAD/targets/post-common --------------------------------------------------------------------------------