mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-06-01 07:10:48 +00:00
Add config.txt support for Rocktech rpi
Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
parent
fab864545a
commit
2c1fb7110e
@ -51,7 +51,11 @@ export class ConfigTxt extends ConfigBackend {
|
||||
];
|
||||
|
||||
public async matches(deviceType: string): Promise<boolean> {
|
||||
return deviceType.startsWith('raspberry') || deviceType === 'fincm3';
|
||||
return (
|
||||
deviceType.startsWith('raspberry') ||
|
||||
deviceType === 'fincm3' ||
|
||||
deviceType === 'rt-rpi-300'
|
||||
);
|
||||
}
|
||||
|
||||
public async getBootConfig(): Promise<ConfigOptions> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user