View flex.grub
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Script to add cros_debug / dev mode option in grub.cfg | |
### ( Each Flex update removes cros_debug / dev mode option | |
### Be sure to run this script AFTER each update and BEFORE rebooting ) | |
ANS= | |
ROOTDEVICE= | |
ROOTDEVICEPREFIX= | |
P12MOUNTPOINT=/var/p12 | |
GRUBCFGPATH=$P12MOUNTPOINT/efi/boot | |
GRUBCFGFILE=grub.cfg |
View install.brio-br
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 'install.brio-br' - A script to install 'brio-br' and associated links to '/usr/local/bin' as root (default) | |
## | |
######################### | |
### Declare variables ### | |
######################### | |
## | |
APPL='install.brio-br' | |
APPLBR='brio-br' | |
BIN=${BIN:-/usr/local/bin} |
View brio-br
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# 'brio-br' - A script to list, backup and restore brioche containers | |
## | |
######################### | |
### Declare variables ### | |
######################### | |
## | |
## COMMON variables ## | |
## | |
APPL="${0##*/}" |
View brio-restore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# brio-restore - A script to list brioche backups & restore brioche containers | |
## | |
####################### | |
### Setup variables ### | |
####################### | |
## | |
APPL="${0##*/}" | |
CONTAINERS='' | |
DELAY=5 |
View brio-backup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# brio-backup - A script to list & backup brioche containers | |
## | |
####################### | |
### Setup variables ### | |
####################### | |
## | |
APPL="${0##*/}" | |
BACKEDUP='' | |
BACKUPS='' |
View get-recovery.name
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
name=${1:-google pixelbook$} | |
confdiff='' | |
conffile="recovery.conf" | |
confscript='get-recovery.conf' | |
location="${HOME}/Downloads/" | |
del=3 | |
key='' |
View get-recovery.hwid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
hwid=${1:-eve} | |
confdiff='' | |
conffile="recovery.conf" | |
confscript='get-recovery.conf' | |
location="${HOME}/Downloads/" | |
del=3 | |
key='' |
View get-recovery.board
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
board=${1:-eve} | |
confdiff='' | |
conffile="recovery.conf" | |
confscript='get-recovery.conf' | |
location="${HOME}/Downloads/" | |
del=3 | |
key='' |
View get-recovery.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
conffile="recovery.conf" | |
location="${HOME}/Downloads/" | |
mkdir -p ${location} | |
echo "Getting a new ${conffile} file ..." | |
curl -s https://dl.google.com/dl/edgedl/chromeos/recovery/${conffile} -o /tmp/${conffile} |
View taremall.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Backup script for use before powerwashing or recovery. | |
ANS='' | |
DAT="$(date +%m%d%Y)" | |
DIR="$HOME/Downloads/$DAT" | |
EXF='--exclude-tag-under=.EXCLUDE' | |
MOD='Eve' | |
NIX='/var/crouton/chroots/trusty/home/denny' | |
echo_e='/bin/echo -e' | |
xit=0 |
NewerOlder