- We copy push-flashair.py from Stephen's rpi-dev-scripts repository to talk with the Toshiba "FlashAir" SD cards, which are full size SD cards that use the iSDIO specification to also have 802.11 wireless capability and a certain amount of remote functionality. With UPLOAD=1 set in the config file you can upload files to these cards. - We copy and then modify uboot-gen.sh from the rpi-dev-scripts repository to figure out what the u-boot.bin file needs to be called on the target RPi as flashair.rpi - I've added a flashair.ti-omap script that will copy MLO/u-boot.img files as these are what most TI platforms use to boot. - The flash.flashair script will make sure that the card is responding to a ping before we move on to trying to talk with it. Signed-off-by: Tom Rini <trini@konsulko.com> Signed-off-by: Stephen Warren <swarren@nvidia.com>
27 lines
1.4 KiB
Plaintext
27 lines
1.4 KiB
Plaintext
# Copyright (c) 2016 Konsulko Group. All rights reserved.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
# DEALINGS IN THE SOFTWARE.
|
|
#
|
|
# This script will copy the 'MLO' and 'u-boot.img' files into the correct
|
|
# location for the flashair wrapper to upload them. The 'MLO' file is what
|
|
# the ROM found in most 32bit TI platforms (other than the Keystone family)
|
|
# will look for when booting from a FAT partition.
|
|
|
|
cp "${U_BOOT_BUILD_DIR}"/{MLO,u-boot.img} "${UL_DIR}/"
|