| 37 | == Install dependencies on the device == |
| 38 | |
| 39 | * Some packages are not in the device apt repositories and therefore need to be transfered from scratchbox. |
| 40 | * Execute the following lines inside scratchbox: |
| 41 | {{{ |
| 42 | fakeroot apt-get -d install libxcb-image0 libxcb-keysyms1 libxcb-icccm1 libxcb-aux0 libxcb-event1 libxcb-property1 |
| 43 | mkdir ~/swork/packages && cd ~/swork/packages |
| 44 | cp /var/cache/apt/archives/libxcb-image0_* . |
| 45 | cp /var/cache/apt/archives/libxcb-keysyms1_* . |
| 46 | cp /var/cache/apt/archives/libxcb-icccm1_* . |
| 47 | cp /var/cache/apt/archives/libxcb-aux0_* . |
| 48 | cp /var/cache/apt/archives/libxcb-event1_* . |
| 49 | cp /var/cache/apt/archives/libxcb-property1_* . |
| 50 | }}} |
| 51 | * Now ssh to the device and change into your NFS mounted directory to install the previously downloaded packages |
| 52 | {{{ |
| 53 | cd /your_nfs_mount/swork/packages/ |
| 54 | dpkg -i * |
| 55 | }}} |
| 56 | |