diff --git a/README.md b/README.md
index 48038f1..0c14206 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,6 @@
MinUI is a focused custom launcher for the Anbernic RG35XX (and possibly others to come).
-See [more screenshots](github/)
+See [more screenshots](github/).
You can [grab the latest version here](https://github.com/shauninman/union-minui/releases) (once released).
\ No newline at end of file
diff --git a/makefile b/makefile
index 9508dd0..513e785 100644
--- a/makefile
+++ b/makefile
@@ -23,6 +23,8 @@ RELEASE_NAME=$(RELEASE_BASE)-$(RELEASE_DOT)
all: lib sys all-cores tools dtb bundle readmes zip report
+repack: bundle readmes zip report
+
lib:
cd ./src/libmsettings && make
diff --git a/src/boot/boot.sh b/src/boot/boot.sh
index ee405e6..47c9017 100755
--- a/src/boot/boot.sh
+++ b/src/boot/boot.sh
@@ -62,7 +62,7 @@ if [ -f $UPDATE_PATH ]; then
rm -f $UPDATE_PATH
# the updated system finishes the install/update
- $SYSTEM_PATH/bin/install.sh
+ $SYSTEM_PATH/bin/install.sh # &> $SDCARD_PATH/install.txt
fi
ROOTFS_IMAGE=$SYSTEM_PATH/rootfs.ext2
diff --git a/src/common/api.c b/src/common/api.c
index c11c74a..9c41245 100644
--- a/src/common/api.c
+++ b/src/common/api.c
@@ -302,7 +302,7 @@ SDL_Surface* GFX_resize(int w, int h, int pitch) {
void GFX_flip(SDL_Surface* screen) {
// point framebuffer at the first line of the backbuffer
gfx.vinfo.yoffset = gfx.page * PAGE_HEIGHT;
- if (ioctl(gfx.fb0_fd, gfx.resized ? FBIOPUT_VSCREENINFO : FBIOPAN_DISPLAY, &gfx.vinfo)) LOG_info("FBIOPUT_VSCREENINFO failed %s\n", strerror(errno));
+ if (ioctl(gfx.fb0_fd, gfx.resized ? FBIOPUT_VSCREENINFO : FBIOPAN_DISPLAY, &gfx.vinfo)) LOG_info("%s failed %s\n", (gfx.resized ? "FBIOPUT_VSCREENINFO" : "FBIOPAN_DISPLAY"), strerror(errno));
gfx.resized = 0;
if (gfx.vsync!=VSYNC_OFF) {