no need for boot-in-system.img to rebuild everything
This commit is contained in:
parent
f7aac2054c
commit
63359b5d06
8
Makefile
8
Makefile
@ -9,16 +9,18 @@ default toplevel:
|
||||
android-bootimg android-recovery:
|
||||
nix-build $(NFLAGS) -A outputs.android.$@ -o $@
|
||||
|
||||
update: toplevel android-bootimg
|
||||
update: toplevel
|
||||
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"
|
||||
|
||||
update-boot: update android-bootimg
|
||||
cat android-bootimg | ssh $(DEVICE) "cat >/boot/boot.img"
|
||||
|
||||
boot-in-system.img: default
|
||||
boot-in-system.img: android-bootimg
|
||||
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 .)
|
||||
(cd boot-in-system && cp ../android-bootimg ./boot.img)
|
||||
mke2fs -d boot-in-system boot-in-system.img
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user