Advertisement
Guest User

meh

a guest
Dec 11th, 2016
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. ##listing lines of .bashrc
  2.  
  3. #
  4. # ~/.bashrc
  5. #
  6.  
  7. # If not running interactively, don't do anything
  8. [[ $- != *i* ]] && return
  9.  
  10. alias ls='ls --color=auto'
  11. PS1='[\u@\h \W]\$ '
  12.  
  13. cat /home/keijo/av.motd
  14. export MER_ROOT=/home/keijo/mer
  15. alias sdk=$MER_ROOT/sdks/sdk/mer-sdk-chroot
  16. export PATH=/home/keijo/bin:$PATH
  17.  
  18.  
  19. ##listing lines of .hadk.env
  20.  
  21. export MER_ROOT="/home/keijo/mer"
  22. export ANDROID_ROOT="$MER_ROOT/android/droid"
  23. export VENDOR="sony"
  24. export DEVICE="sirius"
  25. export PORT_ARCH="armv7hl"
  26.  
  27.  
  28. ##listing lines of .mersdkubu.profile
  29.  
  30. function hadk() { source $HOME/.hadk.env; echo "Env setup for $DEVICE"; }
  31. export PS1="HABUILD_SDK [\${DEVICE}] $PS1"
  32. hadk
  33.  
  34.  
  35. ##listing lines of .mersdk.profile
  36.  
  37. function hadk() { source $HOME/.hadk.env; echo "Env setup for $DEVICE"; }
  38. hadk
  39. PS1="MerSDK $PS1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement