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

Add fill command to overwrite SD card #125

Closed
wants to merge 8 commits into from

Commits on Sep 10, 2020

  1. Add fill command to overwrite SD card

    This patch adds the fill command that overwrites the SD card with random
    data.  Similar to the reset command, we always require the user to enter
    the admin PIN even if is cached.
    robinkrahl committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    2ba357c View commit details
    Browse the repository at this point in the history
  2. Add is_tty field to Context

    This patch adds the is_tty field to the Context struct that indicates
    whether stdout is a TTY.  This allows us to use TTY features like moving
    the cursor in our output.
    robinkrahl committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    b58bf85 View commit details
    Browse the repository at this point in the history
  3. Show progress bar in fill output

    This patch uses the progressing crate to display a progress bar for the
    fill command if the output is printed to a TTY.
    robinkrahl committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    b853402 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2020

  1. fixup! Add fill command to overwrite SD card

    mention operation time in man page
    robinkrahl committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    5f972f8 View commit details
    Browse the repository at this point in the history
  2. fixup! Add is_tty field to Context

    use crossterm 0.17.7
    robinkrahl committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    2f5e81e View commit details
    Browse the repository at this point in the history
  3. fixup! Show progress bar in fill output

    document ProgressBar
    robinkrahl committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    fa57018 View commit details
    Browse the repository at this point in the history
  4. fixup! Add is_tty field to Context

    replace crossterm with termion
    robinkrahl committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    9f226ec View commit details
    Browse the repository at this point in the history
  5. fixup! Show progress bar in fill output

    replace crossterm with termion
    robinkrahl committed Sep 12, 2020
    Configuration menu
    Copy the full SHA
    5c464a0 View commit details
    Browse the repository at this point in the history