Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f32f2d6b authored by Liz Kammer's avatar Liz Kammer Committed by Gerrit Code Review
Browse files

Merge "Update HostAndDevice* documentation"

parents 81a1adb6 8631cc73
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -986,10 +986,13 @@ const (
	// Device is built by default. Host and HostCross are not supported.
	DeviceSupported = deviceSupported | deviceDefault

	// Device is built by default. Host and HostCross are supported.
	// By default, _only_ device variant is built. Device variant can be disabled with `device_supported: false`
    // Host and HostCross are disabled by default and can be enabled with `host_supported: true`
	HostAndDeviceSupported = hostSupported | hostCrossSupported | deviceSupported | deviceDefault

	// Host, HostCross, and Device are built by default.
    // Building Device can be disabled with `device_supported: false`
    // Building Host and HostCross can be disabled with `host_supported: false`
	HostAndDeviceDefault = hostSupported | hostCrossSupported | hostDefault |
		deviceSupported | deviceDefault