Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools/mk7z: fixups #11800

Merged
merged 3 commits into from
May 12, 2024
Merged

tools/mk7z: fixups #11800

merged 3 commits into from
May 12, 2024

Commits on May 11, 2024

  1. tools/mk7z: fix subtle bug in manifest handling

    A string like `1E2` is interpreted as `100` (`1×10²`):
    
    ```bash
    ▹ echo 0E036904 | awk '{ if ($1) print $1 }'
    ▹ echo 0E036904 | awk '{ if ($1!="") print $1 }'
    0E036904
    ```
    benoit-pierre committed May 11, 2024
    Configuration menu
    Copy the full SHA
    df9d93d View commit details
    Browse the repository at this point in the history
  2. tools/mk7z: tweak manifest handling code

    To support mawk (default awk on debian unstable).
    benoit-pierre committed May 11, 2024
    Configuration menu
    Copy the full SHA
    3567342 View commit details
    Browse the repository at this point in the history
  3. tools/mk7z: support debian unstable / ubuntu 22.04

    The version of `7z` provided by `p7zip-full` is now the same as `7zip`:
    
    - symlinks are dereferenced by default (no support for `-l`)
    - `7z -ba h` appends a trailing `/` to directories
      (not present in the output of `7z -slt l`)
    benoit-pierre committed May 11, 2024
    Configuration menu
    Copy the full SHA
    740167f View commit details
    Browse the repository at this point in the history