bitbake -vDDD
bitbake -s
| #!/bin/sh | |
| set -eu | |
| SIZE_MB="${1:-900}" # MB to write into tmpfs (default 900) | |
| TMPFS_MB="${TMPFS_MB:-1024}" # tmpfs size | |
| MOUNT_DIR="/mnt/zramtest" | |
| FILE="$MOUNT_DIR/bigfile" | |
| need() { command -v "$1" >/dev/null || { echo "missing: $1"; exit 1; }; } | 
| #!/bin/sh | |
| fetch_erase_count(){ | |
| echo -e "\nfetch eMMC erase count to calculate wear-level efficiency...\n" | |
| erase_output=$(mmc kioxia erase-count $mmcdev) | |
| # Parse max and avg erase counts from the output | |
| max_erase=$(echo "$erase_output" | awk '/Maximum value of erase count in MLC area:/ {print $NF}') | |
| avg_erase=$(echo "$erase_output" | awk '/Average value of erase count in MLC area:/ {print $NF}') | 
| # ~/.tmux.conf | |
| # unbind default prefix and set it to ctrl-a | |
| unbind C-b | |
| set -g prefix C-a | |
| bind C-a send-prefix | |
| bind r source ~/.tmux.conf\\; display "~/.tmux.conf sourced!" | |
| # make delay shorter | |
| set -sg escape-time 0 | 
  git checkout <branch-name>                  # checkout the branch you want to add the tag
  git tag -a <tag-name> -m "added new Tag"    # create new tag
  git push origin <tag-name>                  # push the new tag to remote repo
 git checkout -b