- 15 Aug, 2022 1 commit
-
-
比特彗星 authored
-
- 20 Oct, 2021 2 commits
-
-
Simon Fels authored
snap: fix failure on cloning SwiftShader repository
-
Simon Fels authored
Try launching session manager via dbus first
-
- 05 Oct, 2021 1 commit
-
-
Leesoo Ahn authored
snapcraft uses '--recursive-submodules' option by default to clone all dependencies if source-type is 'git'. Therefore the option leads the failure on cloning the project by 'git-hooks' submodule. In the case, the failure is asking username/password to do so. Use 'override-pull' to prevent the issue as the following 1. clone the project w/o submodules. 2. use 'sed' command to remove 'git-hooks' submodule. 3. update submodules 'git-hooks' submodule is not necessary to build the project[1] [1]: https://issuetracker.google.com/issues/190626829 Fix: https://github.com/anbox/anbox/issues/1922
-
- 27 Sep, 2021 2 commits
-
-
Mubashshir authored
Signed-off-by:
Mubashshir <ahmubashshir@gmail.com>
-
Mubashshir authored
Anbox ignores `org.anbox.service` when launching session manager even if `org.anbox.service` dbus service was present. This patch tries to start `org.anbox` (i.e. session manager) via dbus first, if dbus call fails, it then tries to launch session manager itself. Signed-off-by:
Mubashshir <ahmubashshir@gmail.com>
-
- 02 Sep, 2021 1 commit
-
-
Simon Fels authored
Fix build with glibc-2.34 and gcc-11
-
- 24 Aug, 2021 2 commits
-
-
Martin Jansa authored
* fixes: In file included from anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/input/manager.cpp:18: anbox/3.0+gitAUTOINC+9de4e87c -r0/git/src/anbox/input/manager.h:38:8: error: 'uint32_t' in namespace 'std' does not name a type; did you mean 'wint_t'? 38 | std::uint32_t next_id(); | ^~~~~~~~ | wint_t Signed-off-by:
Martin Jansa <Martin.Jansa@gmail.com>
-
Martin Jansa authored
* fixes: anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.cpp:25:29: error: no declaration matches 'std::shared_ptr<anbox::common::MountEntry> anbox::common::MountEntry::create(const boost::filesystem::path&, const boost::filesystem::path&, const string&, long unsigned int, const string&)' anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.cpp:47:29: error: no declaration matches 'std::shared_ptr<anbox::common::MountEntry> anbox::common::MountEntry::create(const std::shared_ptr<anbox::common::LoopDevice>&, const boost::filesystem::path&, const string&, long unsigned int, const string&)' anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.cpp:57:29: error: no declaration matches 'std::shared_ptr<anbox::common::MountEntry> anbox::common::MountEntry::create(const boost::filesystem::path&)' anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.h:27:15: error: 'shared_ptr' in namespace 'std' does not name a template type anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.h:30:15: error: 'shared_ptr' in namespace 'std' does not name a template type anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.h:33:15: error: 'shared_ptr' in namespace 'std' does not name a template type anbox/3.0+gitAUTOINC+9de4e87c-r0/git/src/anbox/common/mount_entry.h:41:8: error: 'shared_ptr' in namespace 'std' does not name a template type anbox/3.0+gitAUTOINC+9de4e87c-r0/git/external/xdg/xdg.cpp:179:44: error: no declaration matches 'std::shared_ptr<xdg::BaseDirSpecification> xdg::BaseDirSpecification::create()' anbox/3.0+gitAUTOINC+9de4e87c-r0/git/external/xdg/xdg.h:94:17: error: 'shared_ptr' in namespace 'std' does not name a template type anbox/3.0+gitAUTOINC+9de4e87c -r0/git/external/xdg/xdg_test.cpp:105:50: error: 'create' is not a member of 'xdg::BaseDirSpecification' ... Signed-off-by:
Martin Jansa <Martin.Jansa@gmail.com>
-
- 25 Jun, 2021 1 commit
-
-
Simon Fels authored
cmds: add binderfs support to system information output
-
- 26 May, 2021 2 commits
-
-
Simon Fels authored
Migrate IRC channel to libera.chat
-
Simon Fels authored
-
- 13 May, 2021 2 commits
-
-
Simon Fels authored
New Build Script
-
Simon Fels authored
Update installation instructions to drop anbox-modules mentions
-
- 09 May, 2021 1 commit
-
-
Bilux authored
binderfs support has been add in this commit: https://github.com/anbox/anbox/commit/92286b81bbcd6b51f1ebce3a4626a0ec6b21e8c4
-
- 20 Mar, 2021 3 commits
-
-
Simon Fels authored
Do not install cpu_features on make install
-
Simon Fels authored
xdg desktop directory for anbox category
-
Simon Fels authored
Add host directory bind mount support in anbox.
-
- 09 Mar, 2021 5 commits
-
-
Simon Fels authored
cmake: Use FindGMock from cmake-extras
-
Simon Fels authored
Add "rootless window mode"
-
Simon Fels authored
Improve performance
-
Marius Gripsgard authored
This adds rootless mode, in this mode a window wont be created until a application is started.
-
Marius Gripsgard authored
Since we already require cmake-extras to build both docker and snap, lets use FindGMock from there also.
-
- 08 Mar, 2021 2 commits
-
-
Marius Gripsgard authored
For the amount these functions get called, std copy is way to expensive to do. This removes the need for buffer to be copied twice, first to a std::vector then SmallFixedVector. This also directly copies buffer into a smallVector without the init overhead smallVector's ctor do. This result is a massive performance bootst (at least on arm devices). Also use memcpy since that interestingly seems to be faster on arm devices, on amd64 they seems to be about the same speed.
-
Marius Gripsgard authored
-
- 25 Feb, 2021 1 commit
-
-
Mubashshir authored
Uses bindtab file in anbox data directory to bind directory from host to anbox container. Resolve #1754.
-
- 23 Feb, 2021 2 commits
-
-
Simon Fels authored
ignore directory .vscode
-
Mubashshir authored
-
- 14 Feb, 2021 1 commit
-
-
Paulo Matias authored
It is a static library anyway, and may conflict with other software packages in a Linux distribution.
-
- 26 Jan, 2021 1 commit
-
-
Antoine Fontaine authored
It's old, and basically only works with linux 5.4 lts.
-
- 22 Jan, 2021 4 commits
- 20 Jan, 2021 1 commit
-
-
jnnksdev authored
-
- 06 Jan, 2021 2 commits
-
-
Simon Fels authored
Do break out of while loop
-
Simon Fels authored
snapcraft buildtime image handling fixes
-
- 12 Dec, 2020 2 commits
-
-
Antoine Fontaine authored
-
Antoine Fontaine authored
-
- 09 Dec, 2020 1 commit
-
-
lilinling authored
-