2024-01-13 13:49:25 +00:00
|
|
|
DEVICE=root@biscuit.lan
|
2024-02-18 22:07:37 +00:00
|
|
|
# NFLAGS=-I nixpkgs=../nixpkgs
|
2024-01-13 13:49:25 +00:00
|
|
|
|
2024-02-18 22:07:37 +00:00
|
|
|
.PHONY: toplevel android-bootimg default update android-recovery
|
2024-01-13 13:49:25 +00:00
|
|
|
|
2024-02-18 22:07:37 +00:00
|
|
|
default toplevel:
|
|
|
|
nix-build $(NFLAGS) -A outputs.$@ -o $@
|
2024-01-13 13:49:25 +00:00
|
|
|
|
2024-02-18 22:07:37 +00:00
|
|
|
android-bootimg android-recovery:
|
|
|
|
nix-build $(NFLAGS) -A outputs.android.$@ -o $@
|
2024-01-13 13:49:25 +00:00
|
|
|
|
|
|
|
update: toplevel android-bootimg
|
|
|
|
nix-copy-closure --to $(DEVICE) -v --include-outputs ./toplevel
|
|
|
|
ssh $(DEVICE) "nix-env --profile /nix/var/nix/profiles/system --set `readlink toplevel` && /nix/var/nix/profiles/system/bin/switch-to-configuration switch"
|
|
|
|
cat android-bootimg | ssh $(DEVICE) "cat >/boot/boot.img"
|
2024-02-18 22:07:37 +00:00
|
|
|
|
|
|
|
boot-in-system.img: default
|
|
|
|
dd if=/dev/zero of=$@ bs=1M count=50
|
|
|
|
mkdir -p boot-in-system
|
|
|
|
-rm -f boot-in-system/boot.img
|
|
|
|
(cd boot-in-system && cp ../default/boot.img .)
|
|
|
|
mke2fs -d boot-in-system boot-in-system.img
|
|
|
|
|
|
|
|
|
|
|
|
flash: default boot-in-system.img
|
|
|
|
fastboot flash system boot-in-system.img
|
|
|
|
fastboot flash userdata default/system.img
|