├── .gitignore ├── Makefile ├── README.md ├── common.mk ├── gadget.mk ├── gadget ├── bootscript.txt └── meta │ ├── gadget.yaml │ └── snap.yaml ├── kernel └── snap │ ├── plugins │ ├── initrd.py │ └── kernel.py │ └── snapcraft.yaml ├── kernelsnap.mk ├── model ├── README.md ├── nitrogen-model.json └── nitrogen.model └── snappy.mk /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/README.md -------------------------------------------------------------------------------- /common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/common.mk -------------------------------------------------------------------------------- /gadget.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/gadget.mk -------------------------------------------------------------------------------- /gadget/bootscript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/gadget/bootscript.txt -------------------------------------------------------------------------------- /gadget/meta/gadget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/gadget/meta/gadget.yaml -------------------------------------------------------------------------------- /gadget/meta/snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/gadget/meta/snap.yaml -------------------------------------------------------------------------------- /kernel/snap/plugins/initrd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/kernel/snap/plugins/initrd.py -------------------------------------------------------------------------------- /kernel/snap/plugins/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/kernel/snap/plugins/kernel.py -------------------------------------------------------------------------------- /kernel/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/kernel/snap/snapcraft.yaml -------------------------------------------------------------------------------- /kernelsnap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/kernelsnap.mk -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/model/README.md -------------------------------------------------------------------------------- /model/nitrogen-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/model/nitrogen-model.json -------------------------------------------------------------------------------- /model/nitrogen.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/model/nitrogen.model -------------------------------------------------------------------------------- /snappy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boundarydevices/ubuntu-core/HEAD/snappy.mk --------------------------------------------------------------------------------