Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nmeum/android-tools
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 34.0.4
Choose a base ref
...
head repository: nmeum/android-tools
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 34.0.5
Choose a head ref
  • 14 commits
  • 36 files changed
  • 5 contributors

Commits on Sep 4, 2023

  1. Include go vendor modules for boringssl

    Required for services that do not allow network access to the outside during compilation (e.g. open build service etc.).
    When compiling, at least an 'export GOFLAGS="-mod=vendor"' must be done before.
    munix9 authored and Biswa96 committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    1e417cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    45f4e2d View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2023

  1. Configuration menu
    Copy the full SHA
    7d2b83a View commit details
    Browse the repository at this point in the history
  2. CI: Build in multiple macos versions

    Overwrite existing go symlinks while installing go in macos-13
    Biswa96 authored Sep 11, 2023
    Configuration menu
    Copy the full SHA
    27118fb View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2023

  1. CMake: Add make_f2fs tool for fastboot

    make_f2fs tool is reqired by fastboot. If the make_f2fs executable is
    not present the following error is shown.
    
    $ fastboot format:f2fs userdata
    /usr/bin/make_f2fs failed with status 1
    fastboot: error: Cannot generate image for userdata
    
    This commit also splits libext2_uuid static library from libext2fs
    Biswa96 committed Sep 30, 2023
    Configuration menu
    Copy the full SHA
    a8def2c View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2023

  1. CI: Use latest openSUSE Leap

    munix9 authored and Biswa96 committed Oct 14, 2023
    Configuration menu
    Copy the full SHA
    bff6beb View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2023

  1. CMake: Add sload_f2fs tool

    Biswa96 committed Nov 18, 2023
    Configuration menu
    Copy the full SHA
    ee0e62f View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Configuration menu
    Copy the full SHA
    289759d View commit details
    Browse the repository at this point in the history
  2. 1 Configuration menu
    Copy the full SHA
    399d5f3 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Configuration menu
    Copy the full SHA
    8c8fffa View commit details
    Browse the repository at this point in the history
  2. cmake: Fix off64_t undeclared for musl libc

    This fixes the following error in Alpine linux.
    
    In file included from /andy/vendor/libbase/abi_compatibility.cpp:20:
    /andy/vendor/libbase/include/android-base/file.h:105:71: error: 'off64_t' has not been declared
    105 | bool ReadFullyAtOffset(borrowed_fd fd, void* data, size_t byte_count, off64_t offset);
    |                                                                       ^~~~~~~
    Biswa96 committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    53c88ef View commit details
    Browse the repository at this point in the history
  3. cmake: Disable e2fsdroid in macOS

    This is disabled due to following compiler error.
    
    core/libcutils/include/private/fs_config.h:26:10: fatal error: 'linux/capability.h' file not found
    include <linux/capability.h>
             ^~~~~~~~~~~~~~~~~~~~
    Biswa96 committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    340a4c9 View commit details
    Browse the repository at this point in the history
  4. Drop static check to unblock clang support

    anatol authored and Biswa96 committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    3f3b2d8 View commit details
    Browse the repository at this point in the history
  5. CMake: Compile with -ftrivial-auto-var-init=zero

    As per upstream guidance [0] we should compile the sources with this
    flag in order to not hit issues with using uninitialized variables.
    
    [0] https://android-review.googlesource.com/c/platform/system/core/+/2963911/1#message-01ebff378bb51f7815b6ed8b035a57fbce0418ab
    
    Fixes #133
    
    Co-authored-by: munix9 <44939650+munix9@users.noreply.github.com>
    2 people authored and anatol committed Mar 20, 2024
    Configuration menu
    Copy the full SHA
    c2a0610 View commit details
    Browse the repository at this point in the history
Loading