Loading fuse_sideload.h +2 −0 Original line number Diff line number Diff line Loading @@ -21,6 +21,8 @@ #define FUSE_SIDELOAD_HOST_MOUNTPOINT "/sideload" #define FUSE_SIDELOAD_HOST_FILENAME "package.zip" #define FUSE_SIDELOAD_HOST_PATHNAME (FUSE_SIDELOAD_HOST_MOUNTPOINT "/" FUSE_SIDELOAD_HOST_FILENAME) #define FUSE_SIDELOAD_HOST_EXIT_FLAG "exit" #define FUSE_SIDELOAD_HOST_EXIT_PATHNAME (FUSE_SIDELOAD_HOST_MOUNTPOINT "/" FUSE_SIDELOAD_HOST_EXIT_FLAG) struct provider_vtab { // read a block Loading install.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -406,7 +406,7 @@ really_install_package(const char *path, bool* wipe_cache, bool needs_mount, // setjmp/longjmp. signal(SIGBUS, sig_bus); if (setjmp(jb) == 0) { err = verify_file(map.addr, map.length, loadedKeys, numKeys); err = verify_file(map.addr, map.length, loadedKeys); std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0; ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err); } else { Loading Loading
fuse_sideload.h +2 −0 Original line number Diff line number Diff line Loading @@ -21,6 +21,8 @@ #define FUSE_SIDELOAD_HOST_MOUNTPOINT "/sideload" #define FUSE_SIDELOAD_HOST_FILENAME "package.zip" #define FUSE_SIDELOAD_HOST_PATHNAME (FUSE_SIDELOAD_HOST_MOUNTPOINT "/" FUSE_SIDELOAD_HOST_FILENAME) #define FUSE_SIDELOAD_HOST_EXIT_FLAG "exit" #define FUSE_SIDELOAD_HOST_EXIT_PATHNAME (FUSE_SIDELOAD_HOST_MOUNTPOINT "/" FUSE_SIDELOAD_HOST_EXIT_FLAG) struct provider_vtab { // read a block Loading
install.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -406,7 +406,7 @@ really_install_package(const char *path, bool* wipe_cache, bool needs_mount, // setjmp/longjmp. signal(SIGBUS, sig_bus); if (setjmp(jb) == 0) { err = verify_file(map.addr, map.length, loadedKeys, numKeys); err = verify_file(map.addr, map.length, loadedKeys); std::chrono::duration<double> duration = std::chrono::system_clock::now() - t0; ui->Print("Update package verification took %.1f s (result %d).\n", duration.count(), err); } else { Loading