Bug #1517
Bela in Eclipse: .cproject post-build scp destination should be case sensitive?
| Status: | Rejected | Start date: | 2015-12-25 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% | |
| Category: | - | |||
| Target version: | - |
Description
Post build instructions did not work for me:
`/Applications/Xcode.app/Contents/Developer/usr/bin/make --no-print-directory post-build
Kills the process running on the BeagleBone (if any) and copies the new binary to the BeagleBone in beaglert/
ssh root@192.168.7.2 "kill -s 2 \`pidof BeagleRT\` 2>/dev/null"; scp BeagleRT root@192.168.7.2:~/beaglert/ && echo 'done copying\n' | wall || echo 'error'|wall`
I had to change `root@192.168.7.2:~/beaglert/` to `root@192.168.7.2:~/BeagleRT/` in `.cproject` for it to copy correctly
Not sure if that's just my device or not.
History
#1
Updated by Giulio Moro almost 10 years ago
- Status changed from New to Rejected
It IS case sensitive of course.
I would not say this is a bug. This just requires you to create a folder ~/beaglert on your BBB.
If you don't like the current behaviour, then either rename it or add mkdir -p ~/beaglert to the existing line :ssh root@192.168.7.2 "kill -s 2 \`pidof BeagleRT\` 2>/dev/null; mkdir -p ~/beaglert"; scp BeagleRT root@192.168.7.2:~/beaglert/ && echo 'done copying\n' | wall || echo 'error'|wall`