├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Makefile ├── README.md ├── config └── pop-os │ ├── 22.04.mk │ ├── 24.04.mk │ └── 26.04.mk ├── data ├── Release ├── amd64 │ └── kernelstub ├── apt-preferences ├── arm64 │ └── kernelstub ├── disk │ └── info ├── efi │ └── shimx64.efi.signed ├── grub │ ├── grub.cfg │ ├── load.cfg │ └── loopback.cfg ├── isolinux │ └── isolinux.cfg ├── prime-discrete └── system76-power.conf ├── deps.sh ├── mk ├── automatic.mk ├── chroot.mk ├── clean.mk ├── germinate.mk ├── iso.mk ├── language.mk ├── qemu.mk ├── ubuntu.mk └── update.mk └── scripts ├── chroot.sh ├── console-setup.sh ├── mount.sh ├── pool.sh ├── repos.sh └── unmount.sh /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/README.md -------------------------------------------------------------------------------- /config/pop-os/22.04.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/config/pop-os/22.04.mk -------------------------------------------------------------------------------- /config/pop-os/24.04.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/config/pop-os/24.04.mk -------------------------------------------------------------------------------- /config/pop-os/26.04.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/config/pop-os/26.04.mk -------------------------------------------------------------------------------- /data/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/Release -------------------------------------------------------------------------------- /data/amd64/kernelstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/amd64/kernelstub -------------------------------------------------------------------------------- /data/apt-preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/apt-preferences -------------------------------------------------------------------------------- /data/arm64/kernelstub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/arm64/kernelstub -------------------------------------------------------------------------------- /data/disk/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/disk/info -------------------------------------------------------------------------------- /data/efi/shimx64.efi.signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/efi/shimx64.efi.signed -------------------------------------------------------------------------------- /data/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/grub/grub.cfg -------------------------------------------------------------------------------- /data/grub/load.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/grub/load.cfg -------------------------------------------------------------------------------- /data/grub/loopback.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/grub/loopback.cfg -------------------------------------------------------------------------------- /data/isolinux/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/isolinux/isolinux.cfg -------------------------------------------------------------------------------- /data/prime-discrete: -------------------------------------------------------------------------------- 1 | on 2 | -------------------------------------------------------------------------------- /data/system76-power.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/data/system76-power.conf -------------------------------------------------------------------------------- /deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/deps.sh -------------------------------------------------------------------------------- /mk/automatic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/automatic.mk -------------------------------------------------------------------------------- /mk/chroot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/chroot.mk -------------------------------------------------------------------------------- /mk/clean.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/clean.mk -------------------------------------------------------------------------------- /mk/germinate.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/germinate.mk -------------------------------------------------------------------------------- /mk/iso.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/iso.mk -------------------------------------------------------------------------------- /mk/language.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/language.mk -------------------------------------------------------------------------------- /mk/qemu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/qemu.mk -------------------------------------------------------------------------------- /mk/ubuntu.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/ubuntu.mk -------------------------------------------------------------------------------- /mk/update.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/mk/update.mk -------------------------------------------------------------------------------- /scripts/chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/scripts/chroot.sh -------------------------------------------------------------------------------- /scripts/console-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/scripts/console-setup.sh -------------------------------------------------------------------------------- /scripts/mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/scripts/mount.sh -------------------------------------------------------------------------------- /scripts/pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/scripts/pool.sh -------------------------------------------------------------------------------- /scripts/repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/scripts/repos.sh -------------------------------------------------------------------------------- /scripts/unmount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pop-os/iso/HEAD/scripts/unmount.sh --------------------------------------------------------------------------------