Difference between revisions of "Unit ShellUpdate"
From Ultibo.org
(4 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
---- | ---- | ||
− | '''Ultibo Update Shell | + | '''Ultibo Update Shell Extension unit''' |
− | + | ||
− | + | ||
=== Constants === | === Constants === | ||
Line 116: | Line 114: | ||
|- | |- | ||
| <code>SHELL_UPDATE_ITEM_FIRMWARE_FILES = 'FIRMWARE';</code> | | <code>SHELL_UPDATE_ITEM_FIRMWARE_FILES = 'FIRMWARE';</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>SHELL_UPDATE_ITEM_DEVICETREE_FILES = 'DEVICETREE';</code> | ||
| | | | ||
|- | |- | ||
Line 133: | Line 134: | ||
|- | |- | ||
| <code>SHELL_UPDATE_PARAMETER_CURRENT = 'C';</code> | | <code>SHELL_UPDATE_PARAMETER_CURRENT = 'C';</code> | ||
+ | | | ||
+ | |- | ||
+ | | <code>HELL_UPDATE_PARAMETER_DTB = 'DTB';</code> | ||
| | | | ||
|- | |- | ||
Line 147: | Line 151: | ||
− | '''Shell | + | '''Shell Update specific classes''' |
− | + | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
|- | |- | ||
− | | | + | | [[TShellUpdate|<code>TShellUpdate = class(TShellCommand)</code>]] |
− | + | ||
− | | <code> | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
|- | |- | ||
|} | |} | ||
− | |||
<br /> | <br /> | ||
Line 251: | Line 212: | ||
| <code>SHELL_UPDATE_FIRMWARE_FILES:String;</code> | | <code>SHELL_UPDATE_FIRMWARE_FILES:String;</code> | ||
| style="width: 40%;"|Name of the firmware files for updates (eg bootcode.bin,start.elf,fixup.dat) | | style="width: 40%;"|Name of the firmware files for updates (eg bootcode.bin,start.elf,fixup.dat) | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | <code>SHELL_UPDATE_DTB_FILES:String;</code> | ||
+ | | style="width: 40%;"|Name of the device tree files for updates (eg bcm2708-rpi-b.dtb,bcm2710-rpi-2-b.dtb,bcm2711-rpi-4-b.dtb) | ||
|- | |- | ||
|} | |} | ||
Line 267: | Line 234: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Note |
| None documented | | None documented | ||
|- | |- |
Latest revision as of 03:42, 13 September 2022
Return to Unit Reference
Contents
[hide]Description
Ultibo Update Shell Extension unit
Constants
[Expand]
Shell update specific constants
SHELL_UPDATE_*
[Expand]
Shell update command
SHELL_UPDATE_COMMAND_*
[Expand]
Shell update action
SHELL_UPDATE_ACTION_*
[Expand]
Shell update item
SHELL_UPDATE_ITEM_*
[Expand]
Shell update parameter
SHELL_UPDATE_PARAMETER_*
Type definitions
None defined
Class definitions
Shell Update specific classes
TShellUpdate = class(TShellCommand)
|
Public variables
Shell update specific variables
SHELL_UPDATE_HTTP_SERVER:String;
|
Name or IP of http server for updates (eg 192.168.0.1) |
SHELL_UPDATE_HTTP_PROXY:String;
|
Name or IP and Port of http proxy server (eg 192.168.0.100:8080) |
SHELL_UPDATE_HTTP_PATH:String;
|
URL path on http server for updates (eg /updates/) |
SHELL_UPDATE_LOCAL_PATH:String;
|
Local path for updates (eg C:\) |
SHELL_UPDATE_KERNEL_IMAGE:String;
|
Name of the kernel image file for updates (eg kernel.img) |
SHELL_UPDATE_KERNEL_CONFIG:String;
|
Name of the kernel config file for updates (eg config.txt) |
SHELL_UPDATE_KERNEL_COMMAND:String;
|
Name of the kernel command file for updates (eg cmdline.txt) |
SHELL_UPDATE_FIRMWARE_FILES:String;
|
Name of the firmware files for updates (eg bootcode.bin,start.elf,fixup.dat) |
SHELL_UPDATE_DTB_FILES:String;
|
Name of the device tree files for updates (eg bcm2708-rpi-b.dtb,bcm2710-rpi-2-b.dtb,bcm2711-rpi-4-b.dtb) |
Function declarations
Initialization functions
Return to Unit Reference