ppl-os/Makefile

22 lines
1.0 KiB
Makefile
Raw Normal View History

2018-08-10 14:02:05 +00:00
CHANNEL=stable
2018-08-10 15:30:16 +00:00
ENV=dev
2018-08-10 14:02:05 +00:00
clean:
2018-08-10 15:39:10 +00:00
rm -rf *.img *.model *.manifest snaps
2018-08-10 14:02:05 +00:00
2018-08-10 14:17:10 +00:00
%.model: boards/%.yaml # sign a model file
cat definition.yaml $< | python -c "import sys, yaml, json; json.dump(yaml.load(sys.stdin), sys.stdout, indent=2)" | sed "s|TIMESTAMP|$(shell date -Iseconds --utc)|g" | snap sign -k default > $@
2018-08-10 18:24:28 +00:00
snaps/%: deps/%.yaml
2018-08-10 15:30:16 +00:00
node build-tool.js --env $(ENV) --channel $(CHANNEL) --board $*
2018-08-10 18:24:28 +00:00
%.img: %.model snaps/% $(ENV).cloud-init.yaml # build an image
2018-08-10 15:39:10 +00:00
sudo ubuntu-image snap -o $@ --cloud-init $(ENV).cloud-init.yaml -c $(CHANNEL) $<
2018-08-10 14:02:05 +00:00
# VM stuff
vm.img: amd64.img # make a copy of the newest clean image
cp amd64.img vm.img
start: vm.img # launch the image with kvm
kvm -smp 2 -m 1500 -netdev user,id=mynet0,hostfwd=tcp::8022-:22,hostfwd=tcp::8090-:80 -device virtio-net-pci,netdev=mynet0 -drive file=vm.img,format=raw
ssh: # ssh into it (don't check the key because that one changes after every rebuild)
ssh mkg20001@localhost -p 8022 -o StrictHostKeyChecking=no -o GlobalKnownHostsFile=/dev/null -o UserKnownHostsFile=/dev/null