mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-06-23 17:53:32 +00:00
Merge pull request #1545 from balena-io/add-rocktech-rpi
Add config.txt support for Rocktech rpi
This commit is contained in:
@ -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> {
|
||||
|
Reference in New Issue
Block a user