This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/CCSTUDIO: What is the optionfile format for unattended installation?

Part Number: CCSTUDIO

Tool/software: Code Composer Studio

I'm attempting to perform an unattended installation of Code Composer Studio v7 in a linux environment. My intent is to include the following in a batch file to automatically select a subset of packages to install:

./ccs_setup_linux64_7.1.0.00015.bin --mode unattended --optionefile <option_file>

I struggled to locate documentation on the format of the <option_file> to select the packages for installation. For example, I only wish to install "C6000 Power-Optimized DSP" and "Blackhawk Debug Probes".

How do I achieve this with the installation command line?

  • Hello,

    The recommend thing to do is to run the installer GUI and make your choices while having the installer save your choices to a response file:

    <installer> --save-response-file <full_path_to_response_file/responsefile_name> --skip-install true

    Note that the last parameter "--skip-install true" will allow you to run the installer and make your choices without actually installing anything.

    Once the file has been generated, you can use it for your unattended installation:

    <installer> --prefix <install_directory> --mode unattended --response-file  <full_path_to_response_file/responsefile_name>

    Thanks

    ki