Add config.txt support for Alliance rpi3

Change-type: patch
Signed-off-by: Felipe Lalanne <felipe@balena.io>
This commit is contained in:
Felipe Lalanne 2020-12-11 09:46:48 -03:00
parent 5e3d68c4dc
commit a8c4a6683a

View File

@ -52,9 +52,8 @@ export class ConfigTxt extends ConfigBackend {
public async matches(deviceType: string): Promise<boolean> {
return (
deviceType.startsWith('raspberry') ||
deviceType === 'fincm3' ||
deviceType === 'rt-rpi-300'
['fincm3', 'rt-rpi-300', '243390-rpi3'].includes(deviceType) ||
deviceType.startsWith('raspberry')
);
}