├── .github └── workflows │ ├── .ymllint │ ├── CI.yml │ └── instructions.txt ├── .gitignore ├── .travis.yml ├── 01_build_file_system.sh ├── 02_build_image.sh ├── 03_prepare_iso.sh ├── 04_create_iso.sh ├── README.md └── files ├── audio ├── 91-pulseaudio-custom.rules ├── AppleT2.conf └── apple-t2.conf ├── chroot_build.sh ├── grub ├── 30_os-prober └── grub.cfg ├── isohdpfx.bin └── preseed └── mbp.seed /.github/workflows/.ymllint: -------------------------------------------------------------------------------- 1 | rules: 2 | 3 | line-length: disable 4 | -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.github/workflows/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/.github/workflows/instructions.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | /.idea 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/.travis.yml -------------------------------------------------------------------------------- /01_build_file_system.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/01_build_file_system.sh -------------------------------------------------------------------------------- /02_build_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/02_build_image.sh -------------------------------------------------------------------------------- /03_prepare_iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/03_prepare_iso.sh -------------------------------------------------------------------------------- /04_create_iso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/04_create_iso.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /files/audio/91-pulseaudio-custom.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/audio/91-pulseaudio-custom.rules -------------------------------------------------------------------------------- /files/audio/AppleT2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/audio/AppleT2.conf -------------------------------------------------------------------------------- /files/audio/apple-t2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/audio/apple-t2.conf -------------------------------------------------------------------------------- /files/chroot_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/chroot_build.sh -------------------------------------------------------------------------------- /files/grub/30_os-prober: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/grub/30_os-prober -------------------------------------------------------------------------------- /files/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/grub/grub.cfg -------------------------------------------------------------------------------- /files/isohdpfx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/isohdpfx.bin -------------------------------------------------------------------------------- /files/preseed/mbp.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdityaGarg8/T2-Ubuntu/HEAD/files/preseed/mbp.seed --------------------------------------------------------------------------------