Changeset 83 for trunk/IPs/systemC/processor/Morpheo/Script
- Timestamp:
- May 9, 2008, 8:00:21 PM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Script
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Script/SelfTest.sh
r82 r83 13 13 declare -a directory=( 14 14 "" 15 "Custom" 16 15 17 "Generic/Counter" 16 18 "Generic/Queue_Control" … … 26 28 "Generic/Victim" 27 29 30 "Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Functionnal_unit/Operation" 28 31 "Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Functionnal_unit" 29 32 "Core/Multi_Execute_loop/Execute_loop/Multi_Execute_unit/Execute_unit/Load_store_unit" … … 59 62 "Core/Multi_OOO_Engine" 60 63 64 "Core/Multi_Front_end/Front_end/Context_State" 65 "Core/Multi_Front_end/Front_end/Decod_unit/Decod/Instruction" 61 66 "Core/Multi_Front_end/Front_end/Decod_unit/Decod" 62 67 "Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue" -
trunk/IPs/systemC/processor/Morpheo/Script/version.sh
r82 r83 10 10 function usage () 11 11 { 12 echo "Usage : ${0} action"; 13 echo "Arguments : "; 14 echo " * action"; 15 echo " * add : add all file unpresent in project and set proprity"; 16 echo " * commit : update revision number and commit"; 17 echo " * help : print this message"; 18 echo "Note :"; 12 echo "Usage : ${0} action"; 13 echo "Arguments : "; 14 echo " * action"; 15 echo " * add : add all file unpresent in project and set proprity"; 16 echo " * commit : update revision number and commit"; 17 echo " * status : print only locally modified items"; 18 echo " * status_new : print only locally new items"; 19 echo " * help : print this message"; 20 echo "Note :"; 19 21 echo " * Morpheo's environnement must be positionned."; 20 22 exit; … … 64 66 cd ${pwd}; 65 67 ;; 68 69 "status") 70 cd ${MORPHEO_TOPLEVEL}; 71 72 svn status; 73 74 cd ${pwd}; 75 ;; 76 77 "status_new") 78 cd ${MORPHEO_TOPLEVEL}; 79 80 svn status | grep '?'; 81 82 cd ${pwd}; 83 ;; 84 66 85 "help") 67 86 usage ${*};
Note: See TracChangeset
for help on using the changeset viewer.