Cloud APIs
...
Version 3.0 B-Deploy Endpoints
B-Deploy Setup Entities (v3)

FirmwareUpdatebyFamily Entity (v3)

15min
this entity contains an array of the following properties by device family (cobra, raptor, impala, pantera, tiger, pagani, malibu, and sebring) these fields are only required if you need to do a firmware update for examples of how to update the os for a particular player family, see the section at the bottom of the page properties firmwareupdatesource string string the enum source from which to get the firmware update possible values are “production”, “beta”, “minimumcompatible”, “specificurl”, “none”, or “existing” if you use “production”, “beta”, or “minimumcompatible”, no additional values need to be defined firmwareupdatestandardtargetfilename string string the name of the bsfw firmware file that is targeted for updates the update contained in the file is applied and if successful the file is deleted from the storage medium containing it if the delete succeeds then the system reboots if it fails then the device behaves as if the file had been named save bsfw see below the delete always fails if the card uses an ntfs or hfs+ filesystem firmwareupdatedifferenttargetfilename string string the name of a bsfw firmware file in run mode the update contained in this file is applied only if the version it contains does not match the version that is currently running the file is not deleted but the infinite loop is avoided because on subsequent boots the version number will be the same so the update file will be ignored in rescue mode the update is always applied firmwareupdatenewertargetfilename string string the name of a bsfw firmware file in run mode the update contained in the file is applied only if the version it contains is strictly newer than the version that is currently running the file is not deleted but the infinite loop is avoided because on subsequent boots the version number will be the same so the update file will be ignored in rescue mode, the update is always applied because the version of run mode cannot be checked and the infinite loop won't occur because the device will reboot into run mode firmwareupdatesavetargetfilename string string the name of a bsfw firmware file the update contained in the file is applied but the file is not deleted, because if the device rebooted at this point it would just apply the update against the device and will not automatically reboot when applying updates named like this until the storage device containing the update has been removed this makes this filename useful if you wish to update many units from a usb key firmwareupdateversion string string this can be an empty string or the version number of the firmware you want to update to firmwareupdatesourceurl string string required if the source is “specificurl” this can be a source url for the firmware update if you want to source a brightsign url for any of the following parameters, you can find them in the publicly available manifest file ( https //bsncloud s3 amazonaws com/public/firmwaremanifest json https //bsncloud s3 amazonaws com/public/firmwaremanifest json ) productionreleaseurl string string the url to the bsfw file that the device will pull the setup files from for use in production betareleaseurl string string the url to the bsfw file for the beta release version in production compatiblereleaseurl string string the url to the bsfw file for the minimum compatible release version in production examples these examples all use the cobra family, but other player families can be substituted these examples contain the minimum required parameters for each firmware source and update type updating to the os production version "firmwareupdatetype" "standard", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "production", "firmwareupdatestandardtargetfilename" "cobra update bsfw", "productionreleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 59 update bsfw" } } updating to the minimum compatible version "firmwareupdatetype" "standard", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "compatible", "firmwareupdatestandardtargetfilename" "cobra update bsfw", "compatiblereleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 59 update bsfw" } } updating to the os beta version "firmwareupdatetype" "standard", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "beta", "firmwareupdatestandardtargetfilename" "cobra update bsfw", "betareleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 59 update bsfw" } } updating using a specific url "firmwareupdatetype" "standard", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "specificurl", "firmwareupdatestandardtargetfilename" "cobra update bsfw", "firmwareupdatesourceurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } updating to a different os these examples update the os if it is different from the one already on the player // different os update production version "firmwareupdatetype" "different", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "production", "firmwareupdatedifferenttargetfilename" "cobra update bsfw", "productionreleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // different os update beta version "firmwareupdatetype" "different", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "beta", "firmwareupdatedifferenttargetfilename" "cobra update bsfw", "betareleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // different os update minimum compatible version "firmwareupdatetype" "different", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "compatible", "firmwareupdatedifferenttargetfilename" "cobra update bsfw", "compatiblereleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // different os update specific url version "firmwareupdatetype" "different", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "specificurl", "firmwareupdatedifferenttargetfilename" "cobra update bsfw", "firmwareupdatesourceurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } updating to a newer os these examples update the os version if that version is higher/newer than the one on the player // newer os update production version "firmwareupdatetype" "newer", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "production", "firmwareupdatenewertargetfilename" "cobra update bsfw", "productionreleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // newer os update beta version "firmwareupdatetype" "newer", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "beta", "firmwareupdatenewertargetfilename" "cobra update bsfw", "betareleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // newer os update minimum compatible version "firmwareupdatetype" "newer", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "compatible", "firmwareupdatenewertargetfilename" "cobra update bsfw", "compatiblereleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // newer os update specific url version "firmwareupdatetype" "newer", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "specificurl", "firmwareupdatedifferenttargetfilename" "cobra update bsfw", "firmwareupdatesourceurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } updating and saving the bsfw file these examples update the os to a new version without deleting the bsfw file from the sd card after the update is done, and does not reboot the player after the update is applied (to avoid a reboot loop) // save os update production version "firmwareupdatetype" "save", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "production", "firmwareupdatesavetargetfilename" "cobra update bsfw", "productionreleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // save os update beta version "firmwareupdatetype" "save", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "beta", "firmwareupdatenewertargetfilename" "cobra update bsfw", "betareleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // save os update minimum compatible version "firmwareupdatetype" "save", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "compatible", "firmwareupdatenewertargetfilename" "cobra update bsfw", "compatiblereleaseurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } } // save os update specific url version "firmwareupdatetype" "save", "firmwareupdatesbyfamily" { "cobra" { "firmwareupdatesource" "specificurl", "firmwareupdatedifferenttargetfilename" "cobra update bsfw", "firmwareupdatesourceurl" "https //bsncloud s3 amazonaws com/public/cobra 9 0 34 update bsfw" } }