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
########################################################################## | |
### THIS SCRIPT NO LONGER WORKS DUE TO RECENT CHANGES IN CHROMEOS Flex ### | |
########################################################################## | |
### 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= |
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} |
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##*/}" |
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 |
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='' |
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='' |
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='' |
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='' |
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} |
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