]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/commitdiff
Remove stale doc on code install & build
authorFrank Livingston <frank-livingston@ti.com>
Thu, 28 Sep 2017 18:11:57 +0000 (13:11 -0500)
committerFrank Livingston <frank-livingston@ti.com>
Thu, 28 Sep 2017 18:11:57 +0000 (13:11 -0500)
readme_code_install_and_build.txt [deleted file]

diff --git a/readme_code_install_and_build.txt b/readme_code_install_and_build.txt
deleted file mode 100644 (file)
index 67b4254..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-Update log:
-    10-04-16: Initial version
-    12-01-16: Update instructions for build of PAF libraries
-
-
-Code installation:
-    Open Git bash in C:\ti
-    
-    Clone "ddp_demo" repository into processor_sdk_audio_1_00_00_06 folder.
-        $ git clone git@gitorious.design.ti.com:dolby-harmonious/ddp_demo.git processor_sdk_audio_1_00_00_06
-        
-    Checkout dev_pasdk_frank branch. Later this will be another branch or tag which tracks all desired submodules.
-        $ cd processor_sdk_audio_1_00_00_06
-        $ git checkout dev_pasdk_frank
-        
-    Update submodules. This will clone and checkout: 
-        (1) Dolby IP submodules in processor_sdk_audio_1_00_00_06\dolby_ip
-        (2) paf submodules in processor_sdk_audio_1_00_00_06\pasdk\paf
-        
-        $ git submodule update --init
-        
-Code build:
-    Open DOS shell, setup environment
-        > cd C:\ti\processor_sdk_audio_1_00_00_06
-        > setup_env.bat
-        
-    Build PAF libraries
-        > build_paf_libs.bat
-        
-    Build algorithm libraries. This will build BMDA, CAR, DDP, MAT-THD, and OAR (DAP is currently excluded).
-        > build_alg_libs.bat
-
-    Open DOS shell, build UART/SPI/I2C LLD libraries
-        > cd C:\ti\processor_sdk_audio_1_00_00_06
-        > build_pdk_libs.bat
-
-    Launch CCS, add pasdk_cust to RTSC search path
-        Window->Preferences
-        Open "Code Composer Studio" menu
-        Open "RTSC" sub-menu
-        Click on "Products"
-        Click on "Add" button to right-hand side of "Product Discovery Path" window.
-        In "folder", add C:/ti/processor_sdk_audio_1_00_00_06/psdk_cust
-
-    Platform lib: see C:\ti\processor_sdk_audio_1_00_00_06\docs\PASDK_setup_guide.pdf
-    DSP application: see C:\ti\processor_sdk_audio_1_00_00_06\docs\PASDK_setup_guide.pdf
-    ARM application: see C:\ti\processor_sdk_audio_1_00_00_06\docs\PASDK_setup_guide.pdf
-
-Obtain status for all submodules:    
-    $ git submodule foreach git status
-
-Obtain status for ddp_demo repository and all submodules:
-    git status && git submodule foreach git status
-
-How to change submodule version tracked by super-repo:
-    $ cd <submodule path>, e.g. cd /c/ti/processor_sdk_audio_1_00_00_06/dolby_ip/mat-thd
-    $ git checkout dev_psdkaudio_qin
-    
-    Show status:
-    $ cd ../..
-    $ git status
-    
-    Update super-repo branch to track updated submodule:
-    $ git checkout -b dev_pasdk_qin // this created a new branch in the "ddp_demo" or super-repo
-    $ git add dolby_ip/mat-thd
-    $ git commit -m "<comment>"
-    $ git push origin dev_pasdk_qin