~marius.quabeck/magic-device-tool/master

« back to all changes in this revision

Viewing changes to devices/nexus7tilapia/android/maru.sh

  • Committer: Marius Quabeck
  • Date: 2017-07-24 17:35:33 UTC
  • Revision ID: git-v1:1a3aff84e8e7b6a8711c4b0e80b9eeb99617ab4f
Add Nexus 7 2012 3G tilapia + Install Ubuntu 13.04 Desktop

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
clear
 
2
echo ""
 
3
echo "Nexus 7 2013 WiFi - flo"
 
4
echo ""
 
5
echo ""
 
6
sleep 1
 
7
echo "Maru OS:"
 
8
echo ""
 
9
echo "[1]  Install Maru OS"
 
10
echo "[2]  Install Maru OS without Gapps"
 
11
echo ""
 
12
echo ""
 
13
echo "[3] Back to menu "
 
14
echo ""
 
15
echo -n "Enter option: "; read option
 
16
if [ "$option" = "1" ]; then
 
17
  . ./devices/nexus7/android/maruos.sh
 
18
elif [ "$option" = "2" ]; then
 
19
  . ./devices/nexus7/android/maruoswogapps.sh
 
20
elif [ "$option" = "3" ]; then
 
21
  . ./devices/nexus7/nexus7.sh
 
22
else
 
23
  echo ""
 
24
  echo "Invalid Option"
 
25
  echo ""
 
26
  echo "Exiting script. Bye Bye"
 
27
  exit
 
28
fi