Skip to content

Commit

Permalink
Merge branch 'release/5.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Daisuke Baba committed Jul 2, 2018
2 parents c7c242f + a30ba9f commit 9e265c9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# 履歴
* 5.1.0
- IIJモバイル/タイプD 高速通信プラン向けAPNを追加
- EnOceanポートの対応デバイスにUSB300Uなどを追加
- 本ソフトウェアをアンインストールした時にSmartMeshポート定義を削除するように変更

* 5.0.1
- インストーラー実行時に、CANDY REDがENOMEMでインストールされない問題を修正
- SIMカードが存在しない時にもNTPを止めてモバイルネットワーク時刻調整を実行しようとする問題を修正
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ $ make PI_USER=linaro PI_HOST=tinkerboard.local
### 動作確認 (RPi/ATB)

```bash
$ VERSION=5.0.1 && rm -fr tmp && mkdir tmp && cd tmp && \
$ VERSION=5.1.0 && rm -fr tmp && mkdir tmp && cd tmp && \
tar zxf ~/candy-pi-lite-service-${VERSION}.tgz
$ time sudo SRC_DIR=$(pwd) DEBUG=1 ./install.sh
$ time sudo SRC_DIR=$(pwd) DEBUG=1 CANDY_RED=0 BOOT_APN=soracom.io ./install.sh
Expand Down
2 changes: 1 addition & 1 deletion etc/udev/rules.d/70-enocean-stick.rules
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SUBSYSTEMS=="usb", KERNEL=="ttyUSB[0-9]*", ATTRS{product}=="EnOcean USB [34]00J* ??", MODE="0666", SYMLINK+="enocean"
SUBSYSTEMS=="usb", KERNEL=="ttyUSB[0-9]*", ATTRS{product}=="EnOcean USB [34]00* ??", MODE="0666", SYMLINK+="enocean"
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ VENDOR_HOME=/opt/candy-line

SERVICE_NAME=candy-pi-lite
GITHUB_ID=CANDY-LINE/candy-pi-lite-service
VERSION=5.0.1
VERSION=5.1.0
# Channel B
UART_PORT="/dev/ttySC1"
MODEM_BAUDRATE=${MODEM_BAUDRATE:-460800}
Expand Down
1 change: 1 addition & 0 deletions systemd/apn-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
,"iijmobile.biz-ipv4v6":{"user":"biz@iij","password":"iij","ops":true,"apn":"iijmobile.biz","pdp":"ipv4v6","ipv6dns1":"2001:240::13","ipv6dns2":"2001:240::14"}
,"iijmobile.biz-ipv6":{"user":"biz@iij","password":"iij","ops":true,"apn":"iijmobile.biz","pdp":"ipv6","ipv6dns1":"2001:240::13","ipv6dns2":"2001:240::14"}
,"internet4gd.gdsp":{"user":"web","password":"web","cs":true}
,"sd.iijmobile.jp":{"user":"mobile@iij","password":"iij"}
,"m2m4biz.softbank":{"user":"m2mbiz","password":"m2mbiz","cs":true}
,"isp.docomoiot.net":{"user":"web","password":"web"}
,"4gn.jp":{"user":"sim@with","password":"sim"}
Expand Down
1 change: 1 addition & 0 deletions uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ function uninstall_service {

function uninstall_udev_rules {
rm -f /etc/udev/rules.d/70-enocean-stick.rules > /dev/null 2>&1
rm -f /etc/udev/rules.d/70-smartmesh.rules > /dev/null 2>&1
rm -f /etc/udev/rules.d/76-rpi-ether-netnames.rules > /dev/null 2>&1
}

Expand Down

0 comments on commit 9e265c9

Please sign in to comment.