# Artifactory Debian Repository
-[Artifactory](https://art.sec.samsung.net/ui/packages) supports Debian repositories which can be accessed by the existing `apt` tool.
+[Artifactory](https://bart.sec.samsung.net/ui/packages) supports Debian repositories which can be accessed by the existing `apt` tool.
## Configuration
First, let's add our repository to your apt source list.
```console
$ sudo apt install ca-certificates
-$ sudo echo "deb [trusted=yes] https://art.sec.samsung.net/artifactory/aip_debian bionic-nightly universe"\
+$ sudo echo "deb [trusted=yes] https://bart.sec.samsung.net/artifactory/aip-debian-remote bionic-nightly universe"\
| sudo tee /etc/apt/sources.list.d/artifactory.list
-$ wget -qO - https://art.sec.samsung.net:443/artifactory/api/gpg/key/public | sudo apt-key add -
+$ wget -qO - https://bart.sec.samsung.net:443/artifactory/api/gpg/key/public | sudo apt-key add -
$ sudo apt update
...
```
# Artifactory RPM Repository
-[Artifactory](https://art.sec.samsung.net/ui/packages) supports RPM repositories which can be accessed by the existing `yum`, `zypper` tool.
+[Artifactory](https://bart.sec.samsung.net/ui/packages) supports RPM repositories which can be accessed by the existing `yum`, `zypper` tool.
## Configuration
```
[Artifactory]
name=Artifactory
-baseurl=https://art.sec.samsung.net/artifactory/aip_rpm
+baseurl=https://[BART USERNAME]:[BART API Key]@bart.sec.samsung.net/artifactory/aip-rpm-local
enabled=1
gpgcheck=0
```
To resolve .rpm files using the Zypper client, use addrepo command.
+BART artifactory account is needed.
```console
-$ sudo zypper addrepo https://art.sec.samsung.net/artifactory/aip_rpm artifactory
+$ sudo zypper addrepo https://bart.sec.samsung.net/artifactory/aip-rpm-local artifactory
$ sudo zypper refresh
+Retrieving repository 'artifactory' metadata -----------------------------------------------------------------------------------------------[\]
+Authentication required for 'https://bart.sec.samsung.net/artifactory/aip-rpm-local'
+User Name: [BART USERNAME]
+Password: [BART API Key]
+Retrieving repository 'artifactory' metadata -----------------------------------------------------------------------------------------------[\]
```
## Installation
```console
$ sudo apt install docker.io
-$ sudo docker pull art.sec.samsung.net/aip_docker/n2s2_docker/bionic
-$ sudo docker run -i -t art.sec.samsung.net/aip_docker/n2s2_docker/bionic /bin/bash
+$ docker login aip-docker-local.bart.sec.samsung.net
+$ docker pull aip-docker-local.bart.sec.samsung.net/n2s2_docker/bionic
+$ docker run -i -t aip-docker-local.bart.sec.samsung.net/n2s2_docker/bionic /bin/bash
root# ls /opt/trinity/lib
libmrpsim.a libmrpsim.so libnpu-engine.a libnpu-engine.so pkgconfig
```
- `npu-engine`: NPU User Library ([Repo](https://github.sec.samsung.net/AIP/NPU_SystemService))
- `nnstreamer-trix-engine`: NNStreamer Tensor Filter Subplugin for TRIx Engine ([Repo](https://github.sec.samsung.net/AIP/NPU_SystemService/tree/tizen/plugins/nnstreamer))
-Note that before such packages are shipped to official emulator images, you should download the pre-built packages in [here](https://art.sec.samsung.net/artifactory/aip_generic/RPMS_FOR_TIZEN_EMUL/) and customize your emulator image. Please refer to [here](https://github.sec.samsung.net/AIP/TRIV2_TIZEN_SAMPLE) for detail.
+Note that before such packages are shipped to official emulator images, you should download the pre-built packages in [here](https://bart.sec.samsung.net/artifactory/aip-generic-local/RPMS_FOR_TIZEN_EMUL/) and customize your emulator image. Please refer to [here](https://github.sec.samsung.net/AIP/TRIV2_TIZEN_SAMPLE) for detail.
```console
$ git clone https://github.sec.samsung.net/AIP/TRIV2_TIZEN_SAMPLE