0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ポメラ DM250 Linux の WiFi 設定

Posted at

WiFi 設定ではまったのでメモ

ここでのやりとり によると、配布されているイメージは、DM250 か DM200 かの判定処理に問題があるので、以下の様に変更してください、ということだった

- if [ `cat /proc/meminfo | awk 'NR==1 {print $2}'` -eq 1026076 ]; then
+ if [ -b /dev/mmcblk0p27 ]; then

ので、判定自体を無くして、DM250 にハードコードした。

具体的には、

  • /etc/init.d/dm200_wireless
  • /etc/init.d/firstboot
  • /opt/bin/bt_switch

if [ `cat /proc/meminfo | awk 'NR==1 {print $2}'` -eq 1026076 ]; then
   MODEL="DM250"
else
   MODEL="DM200"
fi

MODEL="DM250"

で置き替え。

あとは、

/mnt/sd/settings/wpa_supplicant.confssidpsk を変更して、リブートしたら動いた。

psk は、wpa_passphrase の出力ではうまくいかなかったので、平文にした。

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?