├── .gitignore ├── .shellcheckrc ├── LICENSE ├── README.md ├── scripts ├── caches.sh ├── images.sh ├── mounts.sh ├── prerequisites.sh ├── setup.sh └── vars.sh ├── snap ├── local │ ├── qemu-patches │ │ ├── virtiofsd-1.patch │ │ ├── virtiofsd-2.patch │ │ └── virtiofsd-3.patch │ ├── runner │ └── virtiofsd.patch └── snapcraft.yaml └── ubuntu-touch-pdk /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.snap 3 | -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- 1 | external-sources=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/README.md -------------------------------------------------------------------------------- /scripts/caches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/scripts/caches.sh -------------------------------------------------------------------------------- /scripts/images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/scripts/images.sh -------------------------------------------------------------------------------- /scripts/mounts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/scripts/mounts.sh -------------------------------------------------------------------------------- /scripts/prerequisites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/scripts/prerequisites.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/vars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/scripts/vars.sh -------------------------------------------------------------------------------- /snap/local/qemu-patches/virtiofsd-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/snap/local/qemu-patches/virtiofsd-1.patch -------------------------------------------------------------------------------- /snap/local/qemu-patches/virtiofsd-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/snap/local/qemu-patches/virtiofsd-2.patch -------------------------------------------------------------------------------- /snap/local/qemu-patches/virtiofsd-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/snap/local/qemu-patches/virtiofsd-3.patch -------------------------------------------------------------------------------- /snap/local/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/snap/local/runner -------------------------------------------------------------------------------- /snap/local/virtiofsd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/snap/local/virtiofsd.patch -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /ubuntu-touch-pdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ubports/ubports-pdk/HEAD/ubuntu-touch-pdk --------------------------------------------------------------------------------