- Mar 21, 2025
-
-
Ayush Singh authored
- Add some derives. Not much else. Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
Rename bb-imager to bb-flasher See merge request !75
-
Ayush Singh authored
- Since the lib is only a wrapper over flashers (other functionality has been moved to other crates), rename it. - Also add documentation to make things ready for pushing to crates.io. Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 19, 2025
-
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
Add bb-config See merge request !74
-
Ayush Singh authored
- Split the distros.json parsing to separate crate Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 18, 2025
-
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
bb-downloader: Use reqwest::IntoUrl generic See merge request !73
-
Ayush Singh authored
- More flexible than using Url type directly. - Also remove custom error type. Better to use `std::io::Error` Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 17, 2025
-
-
Ayush Singh authored
bb-imager: Use trait for flasher See merge request !72
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
- Make almost everything pub(crate) - Remove dead code. Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
- Using trait instead of enums seems much better since it is easier to extend. - Additionally, both GUI and CLI already maintained a soft copy of the enum, so was not particularly useful other than making things clunky. - Also cleanup bb-imager library Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
bb-imager: Move download support to separate crate See merge request !71
-
Ayush Singh authored
- Refactor Image abstraction from enum to trait based. Allows easy extending in the future. - Removes a lot of dependencies from CLI since it does not need downloader. - Planning to push bb-downloader to crates.io after some experimenting with the interface. Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 16, 2025
-
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 15, 2025
-
-
Ayush Singh authored
bb-imager-cli: Remove remote image support See merge request !70
-
Ayush Singh authored
- Just ended up not being useful enough for CLI. - Much better to use in combination with wget to provide remote image support. Changelog: removed Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
Update all deps See merge request !69
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
- No need to depend on libudev. Everything seems to work fine without it. Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
- No need for the helper to parse bin_file. - FromStr is now implemented for bin_file::BinFile Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
bb-imager-gui: Add confing persistance Closes #46 See merge request !68
-
Ayush Singh authored
- Can now save previous config to disk. - I am assuming that most people using the GUI will end up wanting to apply pretty similar customization (or even the same ones) every time they flash the sd cards. - Using json format for config to make it easy enough to modify by the user, if needed. Changelog: added Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 13, 2025
-
-
Ayush Singh authored
gui: add empty state message to destinations page See merge request !66
-
Signed-off-by:
Isaac Parker <parrotmac@gmail.com> Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
bb-imager-gui: Add loading spinners Closes #79 See merge request !67
-
Ayush Singh authored
- Just a copy of the example in iced repo [0] [0]: https://github.com/iced-rs/iced/tree/master/examples/loading_spinners Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 11, 2025
-
-
Ayush Singh authored
Switch to just See merge request !65
-
Ayush Singh authored
- Also add some helper setup recipes Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 10, 2025
-
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
- just is an alternative to make, designed to create tasks, not to be used as a build system. - This has the benefit of not needing PHONY or some other hacks to make Makefile work as a task runner. - The syntax is pretty nice. - Also generates a help page which is great for new people to use it. Doing this with Make involves using a hacky sed based script that is prone to breaking. Here is the current help page: ``` ❯ just Available recipes: default # default recipe to display help information generate-cli-manpage # Generate Manpage for CLI generate-shell-completion SHELL # Generate Shell completion for CLI [build] build-cli TARGET=_HOST_TARGET # Release build for Beagle Board Imager CLI. Should be used for final testing build-gui TARGET=_HOST_TARGET # Release build for Beagle Board Imager GUI. Should be used for final testing build-service TARGET=_HOST_TARGET # Release build for Beagle Board Imager GUI. Should be used for final testing [housekeeping] check # Run code checks clean # Clean Artifacts test # Run tests on workspace [packaging] package-cli-darwin-zip TARGET=_HOST_TARGET # Create compressed CLI package for macOS package-cli-linux-xz TARGET=_HOST_TARGET # Create compressed CLI package for Linux package-cli-windows-zip TARGET=_HOST_TARGET # Create compressed CLI package for Windows package-gui-darwin-dmg TARGET=_HOST_TARGET # Create macOS dmg package package-gui-linux-appimage TARGET=_HOST_TARGET # Create Appimage package for GUI package-gui-linux-deb TARGET=_HOST_TARGET # Create debian package for GUI package-gui-windows-zip TARGET=_HOST_TARGET # Create Windows portable zip package package-service-linux-deb TARGET=_HOST_TARGET # Create debian package for Beagle Board Imager Service package-service-linux-xz TARGET=_HOST_TARGET # Create compressed Beagle Board Imager service package for Linux release TARGET=_HOST_TARGET # Generate all supported packages for the target [run] run-cli FLAGS='' # Run CLI for quick testing on host. Flags can be used to modify the build run-gui FLAGS='' # Run GUI for quick testing on host. Flags can be used to modify the build [setup] setup-appimage INSTALL_DIR=_EXE_DIR # Setup for building appimages setup-deb # Setup for building debian packages ``` Signed-off-by:
Ayush Singh <ayush@beagleboard.org> temp Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 07, 2025
-
-
Ayush Singh authored
- Add example Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
Extract sd card flashing See merge request ayush1325/bb-imager-rs!64
-
Ayush Singh authored
- Move sd card flashing stuff to its own crate. - Also switch to sync for possible performance improvements - A lot of other refactor Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 06, 2025
-
-
Ayush Singh authored
- Seems I need this for building docs for msp430 Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
- Mar 05, 2025
-
-
Ayush Singh authored
- Fix the broken link Signed-off-by:
Ayush Singh <ayush@beagleboard.org>
-
Ayush Singh authored
bb-flasher-bcf: Add msp430 support See merge request !63
-