First Steps¶
Getting started¶
- By default the module is in AP mode.
- Connect to the Linkit_Smart_xxx network and go to mylinkit.local URL
- Set password and login to the web configurator
- Select “Network” tab, switch to “Station mode” and connect the device to the local Wi-Fi network
Factory reset¶
- Boot up the board and wait for the WiFi LED to go off.
- Press and hold the WiFi button for at least 20 seconds then release.
- The WiFi LED will blink fast for 1 second, and then reboot to perform a factory reset.
Update the firmware with a USB drive¶
- Download the latest .. _LinkIt Smart 7688 Firmware: https://docs.labs.mediatek.com/resource/linkit-smart-7688/en/downloads
- Unzip and copy the image lks7688.img file to the root directory of a FAT32 USB drive.
- Attach the USB drive to the HOST port of the board with an OTG cable.
- Press and hold the on-board WiFi button.
- Press the MPU reset button once while holding the WiFi button.
- Keep holding the WiFi button for about 5 seconds. Do not release until the orange LED for WiFi is off. DO NOT press the WiFi button longer than 20s or it will upgrade the bootloader.
- The WiFi LED blinks fast for about 3 minutes.
- The device will automatically reboot after firmware update is complete.
Enabling SFTP¶
# opkg update
# opkg install vsftpd openssh-sftp-server
# /etc/init.d/vsftpd enable
# /etc/init.d/vsftpd start
Mounting the root FS on an SD card¶
Enable ext4 support:
# opkg update # opkg install block-mount kmod-fs-ext4 kmod-usb-storage-extras e2fsprogs fdisk
Format SD card:
# mkfs.ext4 /dev/mmcblk0p1Copy root fs to SD:
# mount /dev/mmcblk0p1 /mnt # tar -C /overlay -cvf - . | tar -C /mnt -xf - # umount /mnt
Generate fstab (file system partitions table) from the current fs configuration:
# block detect > /etc/config/fstabEdit fstab:
config 'mount' option target '/overlay' ... option enabled '1'
Reboot