Skip to content

Commit

Permalink
p2.8.5.2 VNC notice, pinn update, ae-ts
Browse files Browse the repository at this point in the history
update ae-ts
Prevent seg fault for manual update of PINN if no network
Print notice when vncinstall is enabled
  • Loading branch information
procount committed Aug 8, 2018
1 parent e928168 commit c43c0a9
Show file tree
Hide file tree
Showing 25 changed files with 2,076 additions and 2,116 deletions.
661 changes: 306 additions & 355 deletions README.md

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions buildroot/package/recovery/init
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,14 @@ fi
fi
done

if grep -q vncinstall /proc/cmdline; then
echo
echo "************************************************************************************"
echo "*** VNC is enabled on port 5900. Please connect using VNC to see the PINN screen ***"
echo "************************************************************************************"
echo
fi

/usr/bin/recovery $RUN_INSTALLER $GPIO_TRIGGER $KEYBOARD_NO_TRIGGER $FORCE_TRIGGER $DEFAULT_KBD $DEFAULT_LANG $DEFAULT_DISPLAY $DEFAULT_PARTITION $DEFAULT_NOCONFIG $DEFAULT_DSI $DEFAULT_REPOS $EXTRA_REPOS $REPO_LIST $DEFAULT_STYLE -qws 2>/tmp/debug


Expand Down
2 changes: 1 addition & 1 deletion recovery/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define CONFIG_H

/* Version number displayed in the title bar */
#define VERSION_NUMBER "2.8.5.1"
#define VERSION_NUMBER "2.8.5.2"

/* Color of the background */
// #define BACKGROUND_COLOR Qt::white
Expand Down
5 changes: 3 additions & 2 deletions recovery/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ void MainWindow::untarFirmware()
{
QProcess::execute("mount -o remount,rw /mnt");

QProcess::execute("bsdtar -xzf /mnt/firmware.tar.gz -C /mnt");
QProcess::execute("bsdtar --no-same-permissions --no-same-owner --no-xattrs -xzf /mnt/firmware.tar.gz -C /mnt");
QProcess::execute("rm /mnt/firmware.tar.gz");
sync();
QProcess::execute("mount -o remount,ro /mnt");
Expand Down Expand Up @@ -1065,7 +1065,8 @@ void MainWindow::on_actionReinstall_triggered()
{
//Only check upgrades to PINN if it is the ONLY Os to be reinstalled
//Because it causes a reboot
checkForUpdates( true );
if (requireNetwork())
checkForUpdates( true );
return;
}
//Otherwise ignore PINN if there are more selected
Expand Down
196 changes: 98 additions & 98 deletions recovery/translation_ae.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_ast.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_ca.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_de.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_en.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_es.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_eu.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_fi.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_fr.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_hu.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_it.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_ja.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_ko.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_nl.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_no.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_pl.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_pt.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_ru.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_sv.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_tr.ts

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions recovery/translation_zh_TW.ts

Large diffs are not rendered by default.

0 comments on commit c43c0a9

Please sign in to comment.