├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── action.yml ├── createc4z ├── CreateC4Z.py └── README.md ├── dp ├── build_c4z.py ├── driverpackager.py ├── encrypt_c4z.py └── squish ├── dp3 ├── build_c4z.py ├── driverpackager.py ├── encrypt_c4z.py └── squish ├── dplite ├── createsquishy.py ├── driverpackagerlite.py ├── encrypt_c4z.py └── squish ├── dplite3 ├── createsquishy.py ├── driverpackagerlite3.py ├── encrypt_c4z.py └── squish ├── entrypoint.sh ├── gosquish └── squishLua.go └── nextGen.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/action.yml -------------------------------------------------------------------------------- /createc4z/CreateC4Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/createc4z/CreateC4Z.py -------------------------------------------------------------------------------- /createc4z/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/createc4z/README.md -------------------------------------------------------------------------------- /dp/build_c4z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp/build_c4z.py -------------------------------------------------------------------------------- /dp/driverpackager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp/driverpackager.py -------------------------------------------------------------------------------- /dp/encrypt_c4z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp/encrypt_c4z.py -------------------------------------------------------------------------------- /dp/squish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp/squish -------------------------------------------------------------------------------- /dp3/build_c4z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp3/build_c4z.py -------------------------------------------------------------------------------- /dp3/driverpackager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp3/driverpackager.py -------------------------------------------------------------------------------- /dp3/encrypt_c4z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp3/encrypt_c4z.py -------------------------------------------------------------------------------- /dp3/squish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dp3/squish -------------------------------------------------------------------------------- /dplite/createsquishy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite/createsquishy.py -------------------------------------------------------------------------------- /dplite/driverpackagerlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite/driverpackagerlite.py -------------------------------------------------------------------------------- /dplite/encrypt_c4z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite/encrypt_c4z.py -------------------------------------------------------------------------------- /dplite/squish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite/squish -------------------------------------------------------------------------------- /dplite3/createsquishy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite3/createsquishy.py -------------------------------------------------------------------------------- /dplite3/driverpackagerlite3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite3/driverpackagerlite3.py -------------------------------------------------------------------------------- /dplite3/encrypt_c4z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite3/encrypt_c4z.py -------------------------------------------------------------------------------- /dplite3/squish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/dplite3/squish -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /gosquish/squishLua.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/gosquish/squishLua.go -------------------------------------------------------------------------------- /nextGen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/control4/drivers-driverpackager/HEAD/nextGen.md --------------------------------------------------------------------------------