Add Raspberry Pi 5 to version and hardware integration (#105992)

This commit is contained in:
Stefan Agner 2023-12-18 19:31:37 +01:00 committed by Franck Nijhof
parent 03009a2bb9
commit 283f8f466f
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
3 changed files with 5 additions and 0 deletions

View File

@ -270,6 +270,7 @@ HARDWARE_INTEGRATIONS = {
"rpi3-64": "raspberry_pi",
"rpi4": "raspberry_pi",
"rpi4-64": "raspberry_pi",
"rpi5-64": "raspberry_pi",
"yellow": "homeassistant_yellow",
}

View File

@ -17,6 +17,7 @@ BOARD_NAMES = {
"rpi3-64": "Raspberry Pi 3",
"rpi4": "Raspberry Pi 4 (32-bit)",
"rpi4-64": "Raspberry Pi 4",
"rpi5-64": "Raspberry Pi 5",
}
MODELS = {
@ -28,6 +29,7 @@ MODELS = {
"rpi3-64": "3",
"rpi4": "4",
"rpi4-64": "4",
"rpi5-64": "5",
}

View File

@ -66,6 +66,7 @@ BOARD_MAP: Final[dict[str, str]] = {
"RaspberryPi 3 64bit": "rpi3-64",
"RaspberryPi 4": "rpi4",
"RaspberryPi 4 64bit": "rpi4-64",
"RaspberryPi 5": "rpi5-64",
"ASUS Tinkerboard": "tinker",
"ODROID C2": "odroid-c2",
"ODROID C4": "odroid-c4",
@ -112,6 +113,7 @@ VALID_IMAGES: Final = [
"raspberrypi3",
"raspberrypi4-64",
"raspberrypi4",
"raspberrypi5-64",
"tinker",
]