From 96816d474c33d948d8b6cccec184f173352091f2 Mon Sep 17 00:00:00 2001 From: Alex Muthmann Date: Wed, 2 Oct 2019 14:49:39 +0200 Subject: [PATCH 1/2] Default to 8GB images Currently it's not possible to build images with 4GB, therefor 8GB should be default. --- scripts/create_sibling.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create_sibling.sh b/scripts/create_sibling.sh index 1cb446d..f2d9c11 100755 --- a/scripts/create_sibling.sh +++ b/scripts/create_sibling.sh @@ -13,7 +13,7 @@ THIS_DIR=$(pwd) PWNI_NAME="pwnagotchi" PWNI_OUTPUT="pwnagotchi.img" -PWNI_SIZE="4" +PWNI_SIZE="8" OPT_SPARSE=0 OPT_PROVISION_ONLY=0 From 6515df2a9803fe63a192b3f81669c0980e6acc9a Mon Sep 17 00:00:00 2001 From: Alex Muthmann Date: Wed, 2 Oct 2019 14:50:02 +0200 Subject: [PATCH 2/2] Default to 8GB images --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4928b9e..a62fa93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ before_script: - sudo update-binfmts --display - unset GOROOT script: -- sudo ./scripts/create_sibling.sh -n pwnagotchi -o pwnagotchi.img -s 8 +- sudo ./scripts/create_sibling.sh -n pwnagotchi -o pwnagotchi.img - zip -s 2g pwnagotchi.zip pwnagotchi.img # TODO: deploy!