Skip to content

Commit

Permalink
update prefix /accounts/1000/shared/documents/clitools -> /accounts/1…
Browse files Browse the repository at this point in the history
…000/shared/misc/clitools see: #54
  • Loading branch information
Olivier Kaloudoff committed Mar 25, 2021
1 parent 4ac6466 commit bd9b3b6
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ work/
*.tar.gz
*.tar.bz2
*.zip
install.sh
.profile
conf/
clitools/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The project is standing on the shoulders of giants including [playbook-dev-tools
* Install a terminal app (we recommend [term48](https://appworld.blackberry.com/webstore/content/26272878/?lang=en)) and run:

```
cd /accounts/1000/shared/documents
cd /accounts/1000/shared/misc/clitools
sh install.sh
```
* Restart your terminal app and enjoy Berrymuch!
Expand Down
2 changes: 1 addition & 1 deletion env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NATIVE_TOOLS="/accounts/1000/shared/documents/clitools"
NATIVE_TOOLS="/accounts/1000/shared/misc/clitools"
QNX_TARGET=$NATIVE_TOOLS/target_10_3_1_995/qnx6
export NATIVE_TOOLS QNX_TARGET

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
D=/accounts/1000/shared/documents/clitools
D=/accounts/1000/shared/misc/clitools
mkdir -p $D;
mv clitools.zip $D
cd $D
Expand Down
2 changes: 1 addition & 1 deletion lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ PBHOSTARCH=arm-unknown-nto-qnx8.0.0eabi
PBBUILDARCH=`gcc -dumpmachine`
PBTARGETARCH=arm-unknown-nto-qnx8.0.0eabi

DEFAULTPREFIX='/accounts/1000/shared/documents/clitools'
DEFAULTPREFIX='/accounts/1000/shared/misc/clitools'

usage()
{
Expand Down
2 changes: 1 addition & 1 deletion ports-wip/perl/README
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To be able to communicate with the BlackBerry, you have to share the wifi connex

The BlackBerry will receive ip address 192.168.0.1.
Now you may start Term48 on your BlackBerry
Then, using playbook-dev-tools, launch "/accounts/1000/shared/documents/clitools/sshd" witch will be listening to port 2022 by default.
Then, using playbook-dev-tools, launch "/accounts/1000/shared/misc/clitools/bin//sshd" witch will be listening to port 2022 by default.

You may now add the following compilation option to perl so he can ssh to your BlackBerry phone and ./try some commands to validate the good results of compilation.

Expand Down
2 changes: 1 addition & 1 deletion ports-wip/python322_/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if [ "$TASK" == "bundle" ]
then
echo "Zipping and copying to packages"
echo $ROOTDIR
cd $WORKROOT/$DISTVER/nto-armv7/accounts/1000/shared/documents/clitools
cd $WORKROOT/$DISTVER/nto-armv7/accounts/1000/shared/misc/clitools
zip -yr $DISTVER.zip .
mv $DISTVER.zip $ROOTDIR/packages

Expand Down
6 changes: 3 additions & 3 deletions ports/dropbear/patches/etc.patch
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ index 9000fcc..2f796c4 100644
-#define DSS_PRIV_FILENAME "/etc/dropbear/dropbear_dss_host_key"
-#define RSA_PRIV_FILENAME "/etc/dropbear/dropbear_rsa_host_key"
-#define ECDSA_PRIV_FILENAME "/etc/dropbear/dropbear_ecdsa_host_key"
+#define DSS_PRIV_FILENAME "/accounts/1000/shared/documents/clitools/etc/dropbear/dropbear_dss_host_key"
+#define RSA_PRIV_FILENAME "/accounts/1000/shared/documents/clitools/etc/dropbear/dropbear_rsa_host_key"
+#define ECDSA_PRIV_FILENAME "/accounts/1000/shared/documents/clitools/etc/dropbear/dropbear_ecdsa_host_key"
+#define DSS_PRIV_FILENAME "accounts/1000/shared/misc/clitools/etc/dropbear/dropbear_dss_host_key"
+#define RSA_PRIV_FILENAME "/accounts/1000/shared/misc/clitools/etc/dropbear/dropbear_rsa_host_key"
+#define ECDSA_PRIV_FILENAME "/accounts/1000/shared/misc/clitools/etc/dropbear/dropbear_ecdsa_host_key"

/* Set NON_INETD_MODE if you require daemon functionality (ie Dropbear listens
* on chosen ports and keeps accepting connections. This is the default.
Expand Down

0 comments on commit bd9b3b6

Please sign in to comment.