An example XSCT session that demonstrates creating a default domain and adding XILFFS and XILRSA libraries to the BSP is as follows. Create a FSBL application thereafter.
Note: A normal domain/BSP does not
contain any libraries.
setws /tmp/wrk/workspace
app create -name hello -hw /tmp/wrk/system.xsa -proc ps7_cortexa9_0 -os standalone -lang C -template {Hello World}
bsp setlib -name xilffs
bsp setlib -name xilrsa
platform generate
app build -name hello
Changing the OS version.
bsp setosversion -ver 6.6
Assigning a driver to an IP.
bsp setdriver -ip ps7_uart_1 -driver generic -ver 2.0
Removing a library (removes xilrsa library from the domain/BSP).
bsp removelib -name xilrsa