├── .gitignore ├── Makefile ├── Makefile.debian ├── QDK_2.x ├── bin │ └── qbuild ├── qdk.conf ├── scripts │ ├── ca_cert3 │ ├── ca_cert3_2 │ ├── code_signing.cfg │ ├── codesigning_cert.pem │ ├── codesigning_common.py │ ├── codesigning_login.sh │ ├── codesigning_qpkg.py │ ├── codesigning_qpkg_cms.py │ └── qinstall.sh └── template │ ├── arm-x09 │ └── .gitkeep │ ├── arm-x19 │ └── .gitkeep │ ├── config │ └── .gitkeep │ ├── icons │ └── .gitkeep │ ├── package_routines │ ├── qpkg.cfg │ ├── shared │ └── init.sh │ ├── x86 │ └── .gitkeep │ └── x86_64 │ └── .gitkeep ├── README.md ├── Vagrantfile ├── bin └── qdk2 ├── completions ├── bash │ └── qdk2 ├── fish │ └── qdk2.fish └── zsh │ └── _qdk2 ├── debian ├── changelog ├── compat ├── control.bionic ├── control.trusty ├── control.xenial ├── copyright ├── qdk2.install ├── qdk2.lintian-overrides ├── rules └── source │ └── lintian-overrides ├── docs ├── design.docx └── pre-commit ├── python ├── archive.py ├── basecommand.py ├── check.py ├── configs.py ├── container.py ├── controlfiles.py ├── editor.py ├── exception.py ├── lint.py ├── log.py ├── qbuild │ ├── __init__.py │ ├── cook.py │ └── rules.py ├── qdk2 │ ├── __init__.py │ ├── build.py │ ├── changelog.py │ ├── clean.py │ ├── create.py │ ├── doctor.py │ ├── edit.py │ ├── extract.py │ ├── imports.py │ ├── info.py │ └── version.py ├── settings.py └── versioncontrol.py ├── samples ├── Makefile └── demo │ ├── Makefile │ ├── QNAP │ ├── changelog │ ├── control │ ├── demo-server.dirs │ ├── demo-server.icon.64 │ ├── demo-server.icon.80 │ ├── demo-server.icon.gray │ ├── demo-server.init │ ├── demo-server.install │ ├── demo-server.links │ ├── demo-webui.init │ ├── demo-webui.install │ └── rules │ ├── src │ ├── Makefile │ └── server.c │ └── webui │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── starter-template.css │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── index.html │ └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── ie-emulation-modes-warning.js │ ├── ie10-viewport-bug-workaround.js │ └── jquery.min.js ├── src ├── Makefile └── qpkg_encrypt.c ├── template ├── QNAP │ ├── changelog │ ├── control │ ├── foobar.conf │ ├── foobar.dirs │ ├── foobar.icon.64 │ ├── foobar.icon.80 │ ├── foobar.icon.gray │ ├── foobar.init │ ├── foobar.install │ ├── foobar.links │ ├── foobar.mime │ ├── foobar.postinst │ ├── foobar.postrm │ ├── foobar.preinst │ ├── foobar.prerm │ └── rules ├── c-cpp │ ├── Makefile │ ├── src │ │ ├── Makefile │ │ ├── daemon.c │ │ ├── foobar.c │ │ └── main.c │ └── usr │ │ ├── bin │ │ └── foobar.sh │ │ └── share │ │ └── foobar │ │ └── foobar.txt └── container │ ├── QNAP │ ├── control │ ├── rules │ ├── template.init │ ├── template.install │ ├── template.postinst │ └── template.prerm │ └── container.json └── tools ├── xz_1404_aarch64.tgz ├── xz_1404_amd64.tgz ├── xz_1404_armhf.tgz └── xz_1404_i386.tgz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/Makefile.debian -------------------------------------------------------------------------------- /QDK_2.x/bin/qbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/bin/qbuild -------------------------------------------------------------------------------- /QDK_2.x/qdk.conf: -------------------------------------------------------------------------------- 1 | QDK_VERSION=2.3.14 2 | -------------------------------------------------------------------------------- /QDK_2.x/scripts/ca_cert3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/ca_cert3 -------------------------------------------------------------------------------- /QDK_2.x/scripts/ca_cert3_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/ca_cert3_2 -------------------------------------------------------------------------------- /QDK_2.x/scripts/code_signing.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/code_signing.cfg -------------------------------------------------------------------------------- /QDK_2.x/scripts/codesigning_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/codesigning_cert.pem -------------------------------------------------------------------------------- /QDK_2.x/scripts/codesigning_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/codesigning_common.py -------------------------------------------------------------------------------- /QDK_2.x/scripts/codesigning_login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/codesigning_login.sh -------------------------------------------------------------------------------- /QDK_2.x/scripts/codesigning_qpkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/codesigning_qpkg.py -------------------------------------------------------------------------------- /QDK_2.x/scripts/codesigning_qpkg_cms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/codesigning_qpkg_cms.py -------------------------------------------------------------------------------- /QDK_2.x/scripts/qinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/scripts/qinstall.sh -------------------------------------------------------------------------------- /QDK_2.x/template/arm-x09/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QDK_2.x/template/arm-x19/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QDK_2.x/template/config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QDK_2.x/template/icons/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QDK_2.x/template/package_routines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/template/package_routines -------------------------------------------------------------------------------- /QDK_2.x/template/qpkg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/template/qpkg.cfg -------------------------------------------------------------------------------- /QDK_2.x/template/shared/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/QDK_2.x/template/shared/init.sh -------------------------------------------------------------------------------- /QDK_2.x/template/x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QDK_2.x/template/x86_64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/qdk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/bin/qdk2 -------------------------------------------------------------------------------- /completions/bash/qdk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/completions/bash/qdk2 -------------------------------------------------------------------------------- /completions/fish/qdk2.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/completions/fish/qdk2.fish -------------------------------------------------------------------------------- /completions/zsh/_qdk2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /debian/control.bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/control.bionic -------------------------------------------------------------------------------- /debian/control.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/control.trusty -------------------------------------------------------------------------------- /debian/control.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/control.xenial -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/qdk2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/qdk2.install -------------------------------------------------------------------------------- /debian/qdk2.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/qdk2.lintian-overrides -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /docs/design.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/docs/design.docx -------------------------------------------------------------------------------- /docs/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/docs/pre-commit -------------------------------------------------------------------------------- /python/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/archive.py -------------------------------------------------------------------------------- /python/basecommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/basecommand.py -------------------------------------------------------------------------------- /python/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/check.py -------------------------------------------------------------------------------- /python/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/configs.py -------------------------------------------------------------------------------- /python/container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/container.py -------------------------------------------------------------------------------- /python/controlfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/controlfiles.py -------------------------------------------------------------------------------- /python/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/editor.py -------------------------------------------------------------------------------- /python/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/exception.py -------------------------------------------------------------------------------- /python/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/lint.py -------------------------------------------------------------------------------- /python/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/log.py -------------------------------------------------------------------------------- /python/qbuild/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qbuild/__init__.py -------------------------------------------------------------------------------- /python/qbuild/cook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qbuild/cook.py -------------------------------------------------------------------------------- /python/qbuild/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qbuild/rules.py -------------------------------------------------------------------------------- /python/qdk2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/qdk2/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/build.py -------------------------------------------------------------------------------- /python/qdk2/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/changelog.py -------------------------------------------------------------------------------- /python/qdk2/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/clean.py -------------------------------------------------------------------------------- /python/qdk2/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/create.py -------------------------------------------------------------------------------- /python/qdk2/doctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/doctor.py -------------------------------------------------------------------------------- /python/qdk2/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/edit.py -------------------------------------------------------------------------------- /python/qdk2/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/extract.py -------------------------------------------------------------------------------- /python/qdk2/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/imports.py -------------------------------------------------------------------------------- /python/qdk2/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/info.py -------------------------------------------------------------------------------- /python/qdk2/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/qdk2/version.py -------------------------------------------------------------------------------- /python/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/settings.py -------------------------------------------------------------------------------- /python/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/python/versioncontrol.py -------------------------------------------------------------------------------- /samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/Makefile -------------------------------------------------------------------------------- /samples/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/Makefile -------------------------------------------------------------------------------- /samples/demo/QNAP/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/changelog -------------------------------------------------------------------------------- /samples/demo/QNAP/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/control -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.dirs: -------------------------------------------------------------------------------- 1 | usr/share/www 2 | -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.icon.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/demo-server.icon.64 -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.icon.80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/demo-server.icon.80 -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.icon.gray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/demo-server.icon.gray -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/demo-server.init -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.install: -------------------------------------------------------------------------------- 1 | src/server usr/bin/ 2 | -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-server.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/demo-server.links -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-webui.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/demo-webui.init -------------------------------------------------------------------------------- /samples/demo/QNAP/demo-webui.install: -------------------------------------------------------------------------------- 1 | webui usr/share/ 2 | -------------------------------------------------------------------------------- /samples/demo/QNAP/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/QNAP/rules -------------------------------------------------------------------------------- /samples/demo/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/src/Makefile -------------------------------------------------------------------------------- /samples/demo/src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/src/server.c -------------------------------------------------------------------------------- /samples/demo/webui/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/css/bootstrap-theme.css -------------------------------------------------------------------------------- /samples/demo/webui/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /samples/demo/webui/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /samples/demo/webui/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/css/bootstrap.css -------------------------------------------------------------------------------- /samples/demo/webui/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/demo/webui/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/demo/webui/css/starter-template.css: -------------------------------------------------------------------------------- 1 | .starter-template { 2 | padding: 40px 15px; 3 | } 4 | -------------------------------------------------------------------------------- /samples/demo/webui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/favicon.ico -------------------------------------------------------------------------------- /samples/demo/webui/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/demo/webui/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/demo/webui/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/demo/webui/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/demo/webui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/index.html -------------------------------------------------------------------------------- /samples/demo/webui/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/js/bootstrap.js -------------------------------------------------------------------------------- /samples/demo/webui/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/demo/webui/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /samples/demo/webui/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /samples/demo/webui/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/samples/demo/webui/js/jquery.min.js -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/qpkg_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/src/qpkg_encrypt.c -------------------------------------------------------------------------------- /template/QNAP/changelog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/QNAP/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/control -------------------------------------------------------------------------------- /template/QNAP/foobar.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.conf -------------------------------------------------------------------------------- /template/QNAP/foobar.dirs: -------------------------------------------------------------------------------- 1 | var/lib/foobar 2 | -------------------------------------------------------------------------------- /template/QNAP/foobar.icon.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.icon.64 -------------------------------------------------------------------------------- /template/QNAP/foobar.icon.80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.icon.80 -------------------------------------------------------------------------------- /template/QNAP/foobar.icon.gray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.icon.gray -------------------------------------------------------------------------------- /template/QNAP/foobar.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.init -------------------------------------------------------------------------------- /template/QNAP/foobar.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.install -------------------------------------------------------------------------------- /template/QNAP/foobar.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.links -------------------------------------------------------------------------------- /template/QNAP/foobar.mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.mime -------------------------------------------------------------------------------- /template/QNAP/foobar.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.postinst -------------------------------------------------------------------------------- /template/QNAP/foobar.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.postrm -------------------------------------------------------------------------------- /template/QNAP/foobar.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.preinst -------------------------------------------------------------------------------- /template/QNAP/foobar.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/foobar.prerm -------------------------------------------------------------------------------- /template/QNAP/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/QNAP/rules -------------------------------------------------------------------------------- /template/c-cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/c-cpp/Makefile -------------------------------------------------------------------------------- /template/c-cpp/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/c-cpp/src/Makefile -------------------------------------------------------------------------------- /template/c-cpp/src/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/c-cpp/src/daemon.c -------------------------------------------------------------------------------- /template/c-cpp/src/foobar.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void foo() 4 | { 5 | printf("Hello, I'm a shared library\n"); 6 | } 7 | -------------------------------------------------------------------------------- /template/c-cpp/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/c-cpp/src/main.c -------------------------------------------------------------------------------- /template/c-cpp/usr/bin/foobar.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Hello, foobar shell script" 3 | -------------------------------------------------------------------------------- /template/c-cpp/usr/share/foobar/foobar.txt: -------------------------------------------------------------------------------- 1 | Example 2 | -------------------------------------------------------------------------------- /template/container/QNAP/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/container/QNAP/control -------------------------------------------------------------------------------- /template/container/QNAP/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/container/QNAP/rules -------------------------------------------------------------------------------- /template/container/QNAP/template.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/container/QNAP/template.init -------------------------------------------------------------------------------- /template/container/QNAP/template.install: -------------------------------------------------------------------------------- 1 | container.json / 2 | image.tar / 3 | -------------------------------------------------------------------------------- /template/container/QNAP/template.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/container/QNAP/template.postinst -------------------------------------------------------------------------------- /template/container/QNAP/template.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/container/QNAP/template.prerm -------------------------------------------------------------------------------- /template/container/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/template/container/container.json -------------------------------------------------------------------------------- /tools/xz_1404_aarch64.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/tools/xz_1404_aarch64.tgz -------------------------------------------------------------------------------- /tools/xz_1404_amd64.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/tools/xz_1404_amd64.tgz -------------------------------------------------------------------------------- /tools/xz_1404_armhf.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/tools/xz_1404_armhf.tgz -------------------------------------------------------------------------------- /tools/xz_1404_i386.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qnap-dev/qdk2/HEAD/tools/xz_1404_i386.tgz --------------------------------------------------------------------------------