blob: aef10b1fb75101c980404bd5289e94a496e2dad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
#
# Created by Darjan Krijan [https://disc-kuraudo.eu]
#
# Source this script to setup the environment for ps3toolchain
#
export PS3DEV="/opt/ps3dev"
export PSL1GHT="${PS3DEV}"
export PATH="${PS3DEV}/bin:${PATH}"
export PATH="${PS3DEV}/ppu/bin:${PATH}"
export PATH="${PS3DEV}/spu/bin:${PATH}"
|