2018-04-10 06:07:10 +02:00
|
|
|
// Copyright 2016 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
package etc
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2020-11-16 13:32:51 +01:00
|
|
|
// This file implements module types that install prebuilt artifacts.
|
|
|
|
//
|
|
|
|
// There exist two classes of prebuilt modules in the Android tree. The first class are the ones
|
|
|
|
// based on `android.Prebuilt`, such as `cc_prebuilt_library` and `java_import`. This kind of
|
|
|
|
// modules may exist both as prebuilts and source at the same time, though only one would be
|
|
|
|
// installed and the other would be marked disabled. The `prebuilt_postdeps` mutator would select
|
|
|
|
// the actual modules to be installed. More details in android/prebuilt.go.
|
|
|
|
//
|
|
|
|
// The second class is described in this file. Unlike `android.Prebuilt` based module types,
|
|
|
|
// `prebuilt_etc` exist only as prebuilts and cannot have a same-named source module counterpart.
|
|
|
|
// This makes the logic of `prebuilt_etc` to be much simpler as they don't need to go through the
|
|
|
|
// various `prebuilt_*` mutators.
|
2020-06-01 19:45:49 +02:00
|
|
|
|
2020-11-16 13:32:51 +01:00
|
|
|
import (
|
2021-02-15 22:50:37 +01:00
|
|
|
"fmt"
|
2021-07-19 04:38:04 +02:00
|
|
|
"path/filepath"
|
2021-04-06 14:00:17 +02:00
|
|
|
"strings"
|
2021-02-15 22:50:37 +01:00
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var pctx = android.NewPackageContext("android/soong/etc")
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2019-02-13 14:50:33 +01:00
|
|
|
// TODO(jungw): Now that it handles more than the ones in etc/, consider renaming this file.
|
2018-04-10 06:07:10 +02:00
|
|
|
|
|
|
|
func init() {
|
2020-06-01 19:45:49 +02:00
|
|
|
pctx.Import("android/soong/android")
|
2020-08-26 15:11:53 +02:00
|
|
|
RegisterPrebuiltEtcBuildComponents(android.InitRegistrationContext)
|
|
|
|
}
|
2020-06-01 19:45:49 +02:00
|
|
|
|
2020-08-26 15:11:53 +02:00
|
|
|
func RegisterPrebuiltEtcBuildComponents(ctx android.RegistrationContext) {
|
|
|
|
ctx.RegisterModuleType("prebuilt_etc", PrebuiltEtcFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_etc_host", PrebuiltEtcHostFactory)
|
2022-12-01 19:38:26 +01:00
|
|
|
ctx.RegisterModuleType("prebuilt_etc_cacerts", PrebuiltEtcCaCertsFactory)
|
2021-04-06 14:00:17 +02:00
|
|
|
ctx.RegisterModuleType("prebuilt_root", PrebuiltRootFactory)
|
2022-01-04 23:27:52 +01:00
|
|
|
ctx.RegisterModuleType("prebuilt_root_host", PrebuiltRootHostFactory)
|
2020-08-26 15:11:53 +02:00
|
|
|
ctx.RegisterModuleType("prebuilt_usr_share", PrebuiltUserShareFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_usr_share_host", PrebuiltUserShareHostFactory)
|
2024-03-27 10:02:12 +01:00
|
|
|
ctx.RegisterModuleType("prebuilt_usr_hyphendata", PrebuiltUserHyphenDataFactory)
|
2020-08-26 15:11:53 +02:00
|
|
|
ctx.RegisterModuleType("prebuilt_font", PrebuiltFontFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_firmware", PrebuiltFirmwareFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_dsp", PrebuiltDSPFactory)
|
2021-04-09 18:41:23 +02:00
|
|
|
ctx.RegisterModuleType("prebuilt_rfsa", PrebuiltRFSAFactory)
|
2023-10-30 23:17:25 +01:00
|
|
|
ctx.RegisterModuleType("prebuilt_renderscript_bitcode", PrebuiltRenderScriptBitcodeFactory)
|
2021-05-06 13:46:11 +02:00
|
|
|
|
|
|
|
ctx.RegisterModuleType("prebuilt_defaults", defaultsFactory)
|
2021-07-28 14:03:16 +02:00
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2021-03-08 12:28:18 +01:00
|
|
|
var PrepareForTestWithPrebuiltEtc = android.FixtureRegisterWithContext(RegisterPrebuiltEtcBuildComponents)
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
type prebuiltEtcProperties struct {
|
2020-11-16 13:32:51 +01:00
|
|
|
// Source file of this prebuilt. Can reference a genrule type module with the ":module" syntax.
|
2024-03-18 04:06:00 +01:00
|
|
|
// Mutually exclusive with srcs.
|
2019-03-05 07:35:41 +01:00
|
|
|
Src *string `android:"path,arch_variant"`
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
// Source files of this prebuilt. Can reference a genrule type module with the ":module" syntax.
|
|
|
|
// Mutually exclusive with src. When used, filename_from_src is set to true.
|
|
|
|
Srcs []string `android:"path,arch_variant"`
|
|
|
|
|
2020-11-18 08:28:42 +01:00
|
|
|
// Optional name for the installed file. If unspecified, name of the module is used as the file
|
2024-03-18 04:06:00 +01:00
|
|
|
// name. Only available when using a single source (src).
|
2018-10-26 14:49:39 +02:00
|
|
|
Filename *string `android:"arch_variant"`
|
|
|
|
|
2020-11-18 08:28:42 +01:00
|
|
|
// When set to true, and filename property is not set, the name for the installed file
|
2018-11-13 03:59:12 +01:00
|
|
|
// is the same as the file name of the source file.
|
|
|
|
Filename_from_src *bool `android:"arch_variant"`
|
|
|
|
|
2020-01-22 00:53:22 +01:00
|
|
|
// Make this module available when building for ramdisk.
|
2020-10-26 20:43:12 +01:00
|
|
|
// On device without a dedicated recovery partition, the module is only
|
|
|
|
// available after switching root into
|
|
|
|
// /first_stage_ramdisk. To expose the module before switching root, install
|
|
|
|
// the recovery variant instead.
|
2020-01-22 00:53:22 +01:00
|
|
|
Ramdisk_available *bool
|
|
|
|
|
2020-10-22 00:17:56 +02:00
|
|
|
// Make this module available when building for vendor ramdisk.
|
2020-10-26 20:43:12 +01:00
|
|
|
// On device without a dedicated recovery partition, the module is only
|
|
|
|
// available after switching root into
|
|
|
|
// /first_stage_ramdisk. To expose the module before switching root, install
|
|
|
|
// the recovery variant instead.
|
2020-10-22 00:17:56 +02:00
|
|
|
Vendor_ramdisk_available *bool
|
|
|
|
|
2021-04-08 14:13:22 +02:00
|
|
|
// Make this module available when building for debug ramdisk.
|
|
|
|
Debug_ramdisk_available *bool
|
|
|
|
|
2018-08-15 07:20:22 +02:00
|
|
|
// Make this module available when building for recovery.
|
|
|
|
Recovery_available *bool
|
|
|
|
|
2018-10-31 14:49:57 +01:00
|
|
|
// Whether this module is directly installable to one of the partitions. Default: true.
|
|
|
|
Installable *bool
|
2020-05-27 11:56:39 +02:00
|
|
|
|
|
|
|
// Install symlinks to the installed file.
|
|
|
|
Symlinks []string `android:"arch_variant"`
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2021-04-06 14:00:17 +02:00
|
|
|
type prebuiltSubdirProperties struct {
|
|
|
|
// Optional subdirectory under which this file is installed into, cannot be specified with
|
|
|
|
// relative_install_path, prefer relative_install_path.
|
|
|
|
Sub_dir *string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// Optional subdirectory under which this file is installed into, cannot be specified with
|
|
|
|
// sub_dir.
|
|
|
|
Relative_install_path *string `android:"arch_variant"`
|
|
|
|
}
|
|
|
|
|
2019-11-06 08:53:07 +01:00
|
|
|
type PrebuiltEtcModule interface {
|
2020-06-01 19:45:49 +02:00
|
|
|
android.Module
|
2020-11-18 08:28:42 +01:00
|
|
|
|
|
|
|
// Returns the base install directory, such as "etc", "usr/share".
|
2020-08-26 15:11:53 +02:00
|
|
|
BaseDir() string
|
2020-11-18 08:28:42 +01:00
|
|
|
|
|
|
|
// Returns the sub install directory relative to BaseDir().
|
2019-11-06 08:53:07 +01:00
|
|
|
SubDir() string
|
2020-11-18 08:28:42 +01:00
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
// Returns an android.OutputPath to the intermediate file, which is the renamed prebuilt source
|
2020-11-18 08:28:42 +01:00
|
|
|
// file.
|
2024-03-18 04:06:00 +01:00
|
|
|
OutputFiles(tag string) (android.Paths, error)
|
2019-11-06 08:53:07 +01:00
|
|
|
}
|
|
|
|
|
2018-04-25 15:57:34 +02:00
|
|
|
type PrebuiltEtc struct {
|
2020-06-01 19:45:49 +02:00
|
|
|
android.ModuleBase
|
2021-05-06 13:46:11 +02:00
|
|
|
android.DefaultableModuleBase
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2021-04-06 14:00:17 +02:00
|
|
|
properties prebuiltEtcProperties
|
|
|
|
subdirProperties prebuiltSubdirProperties
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
sourceFilePaths android.Paths
|
|
|
|
outputFilePaths android.OutputPaths
|
2019-02-13 14:50:33 +01:00
|
|
|
// The base install location, e.g. "etc" for prebuilt_etc, "usr/share" for prebuilt_usr_share.
|
2023-11-13 21:12:06 +01:00
|
|
|
installDirBase string
|
|
|
|
installDirBase64 string
|
|
|
|
installAvoidMultilibConflict bool
|
2020-11-18 08:28:42 +01:00
|
|
|
// The base install location when soc_specific property is set to true, e.g. "firmware" for
|
|
|
|
// prebuilt_firmware.
|
2019-06-04 00:29:27 +02:00
|
|
|
socInstallDirBase string
|
2020-06-01 19:45:49 +02:00
|
|
|
installDirPath android.InstallPath
|
|
|
|
additionalDependencies *android.Paths
|
2023-10-30 23:17:25 +01:00
|
|
|
|
|
|
|
makeClass string
|
2024-01-09 23:47:39 +01:00
|
|
|
|
|
|
|
// Aconfig files for all transitive deps. Also exposed via TransitiveDeclarationsInfo
|
|
|
|
mergedAconfigFiles map[string]android.Paths
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2021-05-06 13:46:11 +02:00
|
|
|
type Defaults struct {
|
|
|
|
android.ModuleBase
|
|
|
|
android.DefaultsModuleBase
|
|
|
|
}
|
|
|
|
|
2020-01-22 00:53:22 +01:00
|
|
|
func (p *PrebuiltEtc) inRamdisk() bool {
|
|
|
|
return p.ModuleBase.InRamdisk() || p.ModuleBase.InstallInRamdisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) onlyInRamdisk() bool {
|
|
|
|
return p.ModuleBase.InstallInRamdisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) InstallInRamdisk() bool {
|
|
|
|
return p.inRamdisk()
|
|
|
|
}
|
|
|
|
|
2020-10-22 00:17:56 +02:00
|
|
|
func (p *PrebuiltEtc) inVendorRamdisk() bool {
|
|
|
|
return p.ModuleBase.InVendorRamdisk() || p.ModuleBase.InstallInVendorRamdisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) onlyInVendorRamdisk() bool {
|
|
|
|
return p.ModuleBase.InstallInVendorRamdisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) InstallInVendorRamdisk() bool {
|
|
|
|
return p.inVendorRamdisk()
|
|
|
|
}
|
|
|
|
|
2021-04-08 14:13:22 +02:00
|
|
|
func (p *PrebuiltEtc) inDebugRamdisk() bool {
|
|
|
|
return p.ModuleBase.InDebugRamdisk() || p.ModuleBase.InstallInDebugRamdisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) onlyInDebugRamdisk() bool {
|
|
|
|
return p.ModuleBase.InstallInDebugRamdisk()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) InstallInDebugRamdisk() bool {
|
|
|
|
return p.inDebugRamdisk()
|
|
|
|
}
|
|
|
|
|
2021-07-19 04:38:04 +02:00
|
|
|
func (p *PrebuiltEtc) InRecovery() bool {
|
2019-11-19 01:00:16 +01:00
|
|
|
return p.ModuleBase.InRecovery() || p.ModuleBase.InstallInRecovery()
|
2018-08-15 07:20:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) onlyInRecovery() bool {
|
|
|
|
return p.ModuleBase.InstallInRecovery()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) InstallInRecovery() bool {
|
2021-07-19 04:38:04 +02:00
|
|
|
return p.InRecovery()
|
2018-08-15 07:20:22 +02:00
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
var _ android.ImageInterface = (*PrebuiltEtc)(nil)
|
2019-11-19 01:00:16 +01:00
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) ImageMutatorBegin(ctx android.BaseModuleContext) {}
|
2019-11-19 01:00:16 +01:00
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) CoreVariantNeeded(ctx android.BaseModuleContext) bool {
|
2020-10-22 00:17:56 +02:00
|
|
|
return !p.ModuleBase.InstallInRecovery() && !p.ModuleBase.InstallInRamdisk() &&
|
2021-04-08 14:13:22 +02:00
|
|
|
!p.ModuleBase.InstallInVendorRamdisk() && !p.ModuleBase.InstallInDebugRamdisk()
|
2020-01-22 00:53:22 +01:00
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) RamdiskVariantNeeded(ctx android.BaseModuleContext) bool {
|
|
|
|
return proptools.Bool(p.properties.Ramdisk_available) || p.ModuleBase.InstallInRamdisk()
|
2019-11-19 01:00:16 +01:00
|
|
|
}
|
|
|
|
|
2020-10-22 00:17:56 +02:00
|
|
|
func (p *PrebuiltEtc) VendorRamdiskVariantNeeded(ctx android.BaseModuleContext) bool {
|
|
|
|
return proptools.Bool(p.properties.Vendor_ramdisk_available) || p.ModuleBase.InstallInVendorRamdisk()
|
|
|
|
}
|
|
|
|
|
2021-04-08 14:13:22 +02:00
|
|
|
func (p *PrebuiltEtc) DebugRamdiskVariantNeeded(ctx android.BaseModuleContext) bool {
|
|
|
|
return proptools.Bool(p.properties.Debug_ramdisk_available) || p.ModuleBase.InstallInDebugRamdisk()
|
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) RecoveryVariantNeeded(ctx android.BaseModuleContext) bool {
|
|
|
|
return proptools.Bool(p.properties.Recovery_available) || p.ModuleBase.InstallInRecovery()
|
2019-11-19 01:00:16 +01:00
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) ExtraImageVariations(ctx android.BaseModuleContext) []string {
|
2019-11-19 01:00:16 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) SetImageVariation(ctx android.BaseModuleContext, variation string, module android.Module) {
|
2019-11-19 01:00:16 +01:00
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) SourceFilePath(ctx android.ModuleContext) android.Path {
|
2024-03-18 04:06:00 +01:00
|
|
|
if len(p.properties.Srcs) > 0 {
|
|
|
|
panic(fmt.Errorf("SourceFilePath not available on multi-source prebuilt %q", p.Name()))
|
|
|
|
}
|
2020-11-18 08:28:42 +01:00
|
|
|
return android.PathForModuleSrc(ctx, proptools.String(p.properties.Src))
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) InstallDirPath() android.InstallPath {
|
2019-07-22 08:48:36 +02:00
|
|
|
return p.installDirPath
|
|
|
|
}
|
|
|
|
|
2018-04-25 15:57:34 +02:00
|
|
|
// This allows other derivative modules (e.g. prebuilt_etc_xml) to perform
|
|
|
|
// additional steps (like validating the src) before the file is installed.
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) SetAdditionalDependencies(paths android.Paths) {
|
2018-04-25 15:57:34 +02:00
|
|
|
p.additionalDependencies = &paths
|
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) OutputFile() android.OutputPath {
|
2024-03-18 04:06:00 +01:00
|
|
|
if len(p.properties.Srcs) > 0 {
|
|
|
|
panic(fmt.Errorf("OutputFile not available on multi-source prebuilt %q", p.Name()))
|
|
|
|
}
|
|
|
|
return p.outputFilePaths[0]
|
2018-10-04 13:27:15 +02:00
|
|
|
}
|
|
|
|
|
2021-02-15 22:50:37 +01:00
|
|
|
var _ android.OutputFileProducer = (*PrebuiltEtc)(nil)
|
|
|
|
|
|
|
|
func (p *PrebuiltEtc) OutputFiles(tag string) (android.Paths, error) {
|
|
|
|
switch tag {
|
|
|
|
case "":
|
2024-03-18 04:06:00 +01:00
|
|
|
return p.outputFilePaths.Paths(), nil
|
2021-02-15 22:50:37 +01:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 13:27:15 +02:00
|
|
|
func (p *PrebuiltEtc) SubDir() string {
|
2021-04-06 14:00:17 +02:00
|
|
|
if subDir := proptools.String(p.subdirProperties.Sub_dir); subDir != "" {
|
2020-06-26 19:12:36 +02:00
|
|
|
return subDir
|
|
|
|
}
|
2021-04-06 14:00:17 +02:00
|
|
|
return proptools.String(p.subdirProperties.Relative_install_path)
|
2018-10-04 13:27:15 +02:00
|
|
|
}
|
|
|
|
|
2020-08-26 15:11:53 +02:00
|
|
|
func (p *PrebuiltEtc) BaseDir() string {
|
2020-09-21 04:02:57 +02:00
|
|
|
return p.installDirBase
|
2020-08-26 15:11:53 +02:00
|
|
|
}
|
|
|
|
|
2018-10-31 14:49:57 +01:00
|
|
|
func (p *PrebuiltEtc) Installable() bool {
|
2020-11-18 08:28:42 +01:00
|
|
|
return p.properties.Installable == nil || proptools.Bool(p.properties.Installable)
|
2018-10-31 14:49:57 +01:00
|
|
|
}
|
|
|
|
|
2021-07-19 04:38:04 +02:00
|
|
|
func (p *PrebuiltEtc) InVendor() bool {
|
|
|
|
return p.ModuleBase.InstallInVendor()
|
|
|
|
}
|
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
func (p *PrebuiltEtc) installBaseDir(ctx android.ModuleContext) string {
|
|
|
|
// If soc install dir was specified and SOC specific is set, set the installDirPath to the
|
|
|
|
// specified socInstallDirBase.
|
|
|
|
installBaseDir := p.installDirBase
|
|
|
|
if p.Target().Arch.ArchType.Multilib == "lib64" && p.installDirBase64 != "" {
|
|
|
|
installBaseDir = p.installDirBase64
|
|
|
|
}
|
|
|
|
if p.SocSpecific() && p.socInstallDirBase != "" {
|
|
|
|
installBaseDir = p.socInstallDirBase
|
|
|
|
}
|
|
|
|
if p.installAvoidMultilibConflict && !ctx.Host() && ctx.Config().HasMultilibConflict(ctx.Arch().ArchType) {
|
|
|
|
installBaseDir = filepath.Join(installBaseDir, ctx.Arch().ArchType.String())
|
|
|
|
}
|
|
|
|
return installBaseDir
|
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2024-03-18 04:06:00 +01:00
|
|
|
var installs []installProperties
|
|
|
|
|
|
|
|
if p.properties.Src != nil && len(p.properties.Srcs) > 0 {
|
|
|
|
ctx.PropertyErrorf("src", "src is set. Cannot set srcs")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that `sub_dir` and `relative_install_path` are not set at the same time.
|
|
|
|
if p.subdirProperties.Sub_dir != nil && p.subdirProperties.Relative_install_path != nil {
|
|
|
|
ctx.PropertyErrorf("sub_dir", "relative_install_path is set. Cannot set sub_dir")
|
|
|
|
}
|
|
|
|
p.installDirPath = android.PathForModuleInstall(ctx, p.installBaseDir(ctx), p.SubDir())
|
|
|
|
|
2020-11-18 08:28:42 +01:00
|
|
|
filename := proptools.String(p.properties.Filename)
|
|
|
|
filenameFromSrc := proptools.Bool(p.properties.Filename_from_src)
|
2022-10-04 00:31:29 +02:00
|
|
|
if p.properties.Src != nil {
|
2024-03-18 04:06:00 +01:00
|
|
|
p.sourceFilePaths = android.PathsForModuleSrc(ctx, []string{proptools.String(p.properties.Src)})
|
|
|
|
// If the source was not found, set a fake source path to
|
|
|
|
// support AllowMissingDependencies executions.
|
|
|
|
if len(p.sourceFilePaths) == 0 {
|
|
|
|
p.sourceFilePaths = android.Paths{android.PathForModuleSrc(ctx)}
|
|
|
|
}
|
2022-10-04 00:31:29 +02:00
|
|
|
|
|
|
|
// Determine the output file basename.
|
|
|
|
// If Filename is set, use the name specified by the property.
|
|
|
|
// If Filename_from_src is set, use the source file name.
|
|
|
|
// Otherwise use the module name.
|
|
|
|
if filename != "" {
|
|
|
|
if filenameFromSrc {
|
|
|
|
ctx.PropertyErrorf("filename_from_src", "filename is set. filename_from_src can't be true")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else if filenameFromSrc {
|
2024-03-18 04:06:00 +01:00
|
|
|
filename = p.sourceFilePaths[0].Base()
|
2022-10-04 00:31:29 +02:00
|
|
|
} else {
|
|
|
|
filename = ctx.ModuleName()
|
|
|
|
}
|
2024-03-18 04:06:00 +01:00
|
|
|
if strings.Contains(filename, "/") {
|
|
|
|
ctx.PropertyErrorf("filename", "filename cannot contain separator '/'")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.outputFilePaths = android.OutputPaths{android.PathForModuleOut(ctx, filename).OutputPath}
|
|
|
|
|
|
|
|
ip := installProperties{
|
|
|
|
filename: filename,
|
|
|
|
sourceFilePath: p.sourceFilePaths[0],
|
|
|
|
outputFilePath: p.outputFilePaths[0],
|
|
|
|
installDirPath: p.installDirPath,
|
|
|
|
symlinks: p.properties.Symlinks,
|
|
|
|
}
|
|
|
|
installs = append(installs, ip)
|
|
|
|
} else if len(p.properties.Srcs) > 0 {
|
|
|
|
if filename != "" {
|
|
|
|
ctx.PropertyErrorf("filename", "filename cannot be set when using srcs")
|
|
|
|
}
|
|
|
|
if len(p.properties.Symlinks) > 0 {
|
|
|
|
ctx.PropertyErrorf("symlinks", "symlinks cannot be set when using srcs")
|
|
|
|
}
|
|
|
|
if p.properties.Filename_from_src != nil {
|
|
|
|
ctx.PropertyErrorf("filename_from_src", "filename_from_src is implicitly set to true when using srcs")
|
|
|
|
}
|
|
|
|
p.sourceFilePaths = android.PathsForModuleSrc(ctx, p.properties.Srcs)
|
|
|
|
for _, src := range p.sourceFilePaths {
|
|
|
|
filename := src.Base()
|
|
|
|
output := android.PathForModuleOut(ctx, filename).OutputPath
|
|
|
|
ip := installProperties{
|
|
|
|
filename: filename,
|
|
|
|
sourceFilePath: src,
|
|
|
|
outputFilePath: output,
|
|
|
|
installDirPath: p.installDirPath,
|
|
|
|
}
|
|
|
|
p.outputFilePaths = append(p.outputFilePaths, output)
|
|
|
|
installs = append(installs, ip)
|
|
|
|
}
|
2022-10-04 00:31:29 +02:00
|
|
|
} else if ctx.Config().AllowMissingDependencies() {
|
|
|
|
// If no srcs was set and AllowMissingDependencies is enabled then
|
|
|
|
// mark the module as missing dependencies and set a fake source path
|
|
|
|
// and file name.
|
|
|
|
ctx.AddMissingDependencies([]string{"MISSING_PREBUILT_SRC_FILE"})
|
2024-03-18 04:06:00 +01:00
|
|
|
p.sourceFilePaths = android.Paths{android.PathForModuleSrc(ctx)}
|
2022-10-04 00:31:29 +02:00
|
|
|
if filename == "" {
|
|
|
|
filename = ctx.ModuleName()
|
2018-11-13 03:59:12 +01:00
|
|
|
}
|
2024-03-18 04:06:00 +01:00
|
|
|
p.outputFilePaths = android.OutputPaths{android.PathForModuleOut(ctx, filename).OutputPath}
|
|
|
|
ip := installProperties{
|
|
|
|
filename: filename,
|
|
|
|
sourceFilePath: p.sourceFilePaths[0],
|
|
|
|
outputFilePath: p.outputFilePaths[0],
|
|
|
|
installDirPath: p.installDirPath,
|
|
|
|
}
|
|
|
|
installs = append(installs, ip)
|
2020-11-18 08:28:42 +01:00
|
|
|
} else {
|
2022-10-04 00:31:29 +02:00
|
|
|
ctx.PropertyErrorf("src", "missing prebuilt source file")
|
|
|
|
return
|
2018-10-26 14:49:39 +02:00
|
|
|
}
|
2019-06-04 00:29:27 +02:00
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
// Call InstallFile even when uninstallable to make the module included in the package.
|
|
|
|
if !p.Installable() {
|
|
|
|
p.SkipInstall()
|
2023-11-13 21:12:06 +01:00
|
|
|
}
|
2024-03-18 04:06:00 +01:00
|
|
|
for _, ip := range installs {
|
|
|
|
ip.addInstallRules(ctx)
|
2023-06-06 00:49:50 +02:00
|
|
|
}
|
2024-01-09 23:47:39 +01:00
|
|
|
android.CollectDependencyAconfigFiles(ctx, &p.mergedAconfigFiles)
|
2023-06-06 00:49:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type installProperties struct {
|
|
|
|
filename string
|
|
|
|
sourceFilePath android.Path
|
2024-03-18 04:06:00 +01:00
|
|
|
outputFilePath android.OutputPath
|
|
|
|
installDirPath android.InstallPath
|
2023-06-06 00:49:50 +02:00
|
|
|
symlinks []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// utility function to add install rules to the build graph.
|
|
|
|
// Reduces code duplication between Soong and Mixed build analysis
|
2024-03-18 04:06:00 +01:00
|
|
|
func (ip *installProperties) addInstallRules(ctx android.ModuleContext) {
|
2023-06-06 00:49:50 +02:00
|
|
|
// Copy the file from src to a location in out/ with the correct `filename`
|
2019-01-26 01:04:11 +01:00
|
|
|
// This ensures that outputFilePath has the correct name for others to
|
|
|
|
// use, as the source file may have a different name.
|
2020-06-01 19:45:49 +02:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cp,
|
2024-03-18 04:06:00 +01:00
|
|
|
Output: ip.outputFilePath,
|
2023-06-06 00:49:50 +02:00
|
|
|
Input: ip.sourceFilePath,
|
2018-10-04 13:27:15 +02:00
|
|
|
})
|
2020-09-29 13:15:08 +02:00
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
installPath := ctx.InstallFile(ip.installDirPath, ip.filename, ip.outputFilePath)
|
2023-06-06 00:49:50 +02:00
|
|
|
for _, sl := range ip.symlinks {
|
2024-03-18 04:06:00 +01:00
|
|
|
ctx.InstallSymlink(ip.installDirPath, sl, installPath)
|
2020-09-29 13:15:08 +02:00
|
|
|
}
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
func (p *PrebuiltEtc) AndroidMkEntries() []android.AndroidMkEntries {
|
2019-04-04 00:47:29 +02:00
|
|
|
nameSuffix := ""
|
2020-01-22 00:53:22 +01:00
|
|
|
if p.inRamdisk() && !p.onlyInRamdisk() {
|
|
|
|
nameSuffix = ".ramdisk"
|
|
|
|
}
|
2020-10-22 00:17:56 +02:00
|
|
|
if p.inVendorRamdisk() && !p.onlyInVendorRamdisk() {
|
|
|
|
nameSuffix = ".vendor_ramdisk"
|
|
|
|
}
|
2021-04-08 14:13:22 +02:00
|
|
|
if p.inDebugRamdisk() && !p.onlyInDebugRamdisk() {
|
|
|
|
nameSuffix = ".debug_ramdisk"
|
|
|
|
}
|
2021-07-19 04:38:04 +02:00
|
|
|
if p.InRecovery() && !p.onlyInRecovery() {
|
2019-04-04 00:47:29 +02:00
|
|
|
nameSuffix = ".recovery"
|
|
|
|
}
|
2023-10-30 23:17:25 +01:00
|
|
|
|
|
|
|
class := p.makeClass
|
|
|
|
if class == "" {
|
|
|
|
class = "ETC"
|
|
|
|
}
|
|
|
|
|
2024-03-18 04:06:00 +01:00
|
|
|
return []android.AndroidMkEntries{{
|
2023-10-30 23:17:25 +01:00
|
|
|
Class: class,
|
2019-04-04 00:47:29 +02:00
|
|
|
SubName: nameSuffix,
|
2024-03-18 04:06:00 +01:00
|
|
|
OutputFile: android.OptionalPathForPath(p.outputFilePaths[0]),
|
2020-06-01 19:45:49 +02:00
|
|
|
ExtraEntries: []android.AndroidMkExtraEntriesFunc{
|
2020-07-03 22:18:24 +02:00
|
|
|
func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2019-08-28 02:33:16 +02:00
|
|
|
entries.SetString("LOCAL_MODULE_TAGS", "optional")
|
2021-11-12 03:59:15 +01:00
|
|
|
entries.SetString("LOCAL_MODULE_PATH", p.installDirPath.String())
|
2024-03-18 04:06:00 +01:00
|
|
|
entries.SetString("LOCAL_INSTALLED_MODULE_STEM", p.outputFilePaths[0].Base())
|
2020-05-27 11:56:39 +02:00
|
|
|
if len(p.properties.Symlinks) > 0 {
|
|
|
|
entries.AddStrings("LOCAL_MODULE_SYMLINKS", p.properties.Symlinks...)
|
|
|
|
}
|
2020-11-16 13:32:51 +01:00
|
|
|
entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", !p.Installable())
|
2019-08-28 02:33:16 +02:00
|
|
|
if p.additionalDependencies != nil {
|
2020-11-16 13:32:51 +01:00
|
|
|
entries.AddStrings("LOCAL_ADDITIONAL_DEPENDENCIES", p.additionalDependencies.Strings()...)
|
2018-04-25 15:57:34 +02:00
|
|
|
}
|
2024-01-09 23:47:39 +01:00
|
|
|
android.SetAconfigFileMkEntries(p.AndroidModuleBase(), entries, p.mergedAconfigFiles)
|
2019-08-28 02:33:16 +02:00
|
|
|
},
|
2018-04-10 06:07:10 +02:00
|
|
|
},
|
2019-12-03 05:24:29 +01:00
|
|
|
}}
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2024-01-09 23:47:39 +01:00
|
|
|
func (p *PrebuiltEtc) AndroidModuleBase() *android.ModuleBase {
|
|
|
|
return &p.ModuleBase
|
|
|
|
}
|
|
|
|
|
2019-07-22 08:48:36 +02:00
|
|
|
func InitPrebuiltEtcModule(p *PrebuiltEtc, dirBase string) {
|
|
|
|
p.installDirBase = dirBase
|
2018-04-25 15:57:34 +02:00
|
|
|
p.AddProperties(&p.properties)
|
2021-04-06 14:00:17 +02:00
|
|
|
p.AddProperties(&p.subdirProperties)
|
|
|
|
}
|
|
|
|
|
|
|
|
func InitPrebuiltRootModule(p *PrebuiltEtc) {
|
|
|
|
p.installDirBase = "."
|
|
|
|
p.AddProperties(&p.properties)
|
2018-04-25 15:57:34 +02:00
|
|
|
}
|
2018-04-10 06:07:10 +02:00
|
|
|
|
2019-03-11 23:58:50 +01:00
|
|
|
// prebuilt_etc is for a prebuilt artifact that is installed in
|
|
|
|
// <partition>/etc/<sub_dir> directory.
|
2020-06-01 19:45:49 +02:00
|
|
|
func PrebuiltEtcFactory() android.Module {
|
2019-07-22 08:48:36 +02:00
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "etc")
|
2018-04-25 15:57:34 +02:00
|
|
|
// This module is device-only
|
2020-06-01 19:45:49 +02:00
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-05-06 13:46:11 +02:00
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
func defaultsFactory() android.Module {
|
|
|
|
return DefaultsFactory()
|
|
|
|
}
|
|
|
|
|
|
|
|
func DefaultsFactory(props ...interface{}) android.Module {
|
|
|
|
module := &Defaults{}
|
|
|
|
|
|
|
|
module.AddProperties(props...)
|
|
|
|
module.AddProperties(
|
|
|
|
&prebuiltEtcProperties{},
|
|
|
|
&prebuiltSubdirProperties{},
|
|
|
|
)
|
|
|
|
|
|
|
|
android.InitDefaultsModule(module)
|
|
|
|
|
2018-04-10 06:07:10 +02:00
|
|
|
return module
|
|
|
|
}
|
2018-08-15 07:20:22 +02:00
|
|
|
|
2019-03-11 23:58:50 +01:00
|
|
|
// prebuilt_etc_host is for a host prebuilt artifact that is installed in
|
|
|
|
// $(HOST_OUT)/etc/<sub_dir> directory.
|
2020-06-01 19:45:49 +02:00
|
|
|
func PrebuiltEtcHostFactory() android.Module {
|
2019-07-22 08:48:36 +02:00
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "etc")
|
2019-02-04 23:34:10 +01:00
|
|
|
// This module is host-only
|
2020-06-01 19:45:49 +02:00
|
|
|
android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommon)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2019-02-04 23:34:10 +01:00
|
|
|
return module
|
2019-02-13 14:50:33 +01:00
|
|
|
}
|
|
|
|
|
2022-12-01 19:38:26 +01:00
|
|
|
// prebuilt_etc_host is for a host prebuilt artifact that is installed in
|
|
|
|
// <partition>/etc/<sub_dir> directory.
|
|
|
|
func PrebuiltEtcCaCertsFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "cacerts")
|
|
|
|
// This module is device-only
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2021-04-06 14:00:17 +02:00
|
|
|
// prebuilt_root is for a prebuilt artifact that is installed in
|
|
|
|
// <partition>/ directory. Can't have any sub directories.
|
|
|
|
func PrebuiltRootFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltRootModule(module)
|
|
|
|
// This module is device-only
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2021-04-06 14:00:17 +02:00
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2022-01-04 23:27:52 +01:00
|
|
|
// prebuilt_root_host is for a host prebuilt artifact that is installed in $(HOST_OUT)/<sub_dir>
|
|
|
|
// directory.
|
|
|
|
func PrebuiltRootHostFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, ".")
|
|
|
|
// This module is host-only
|
|
|
|
android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2019-03-11 23:58:50 +01:00
|
|
|
// prebuilt_usr_share is for a prebuilt artifact that is installed in
|
|
|
|
// <partition>/usr/share/<sub_dir> directory.
|
2020-06-01 19:45:49 +02:00
|
|
|
func PrebuiltUserShareFactory() android.Module {
|
2019-07-22 08:48:36 +02:00
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "usr/share")
|
2019-02-13 14:50:33 +01:00
|
|
|
// This module is device-only
|
2020-06-01 19:45:49 +02:00
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2019-02-13 14:50:33 +01:00
|
|
|
return module
|
2019-02-23 00:47:57 +01:00
|
|
|
}
|
|
|
|
|
2019-03-11 23:58:50 +01:00
|
|
|
// prebuild_usr_share_host is for a host prebuilt artifact that is installed in
|
|
|
|
// $(HOST_OUT)/usr/share/<sub_dir> directory.
|
2020-06-01 19:45:49 +02:00
|
|
|
func PrebuiltUserShareHostFactory() android.Module {
|
2019-07-22 08:48:36 +02:00
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "usr/share")
|
2019-02-23 00:47:57 +01:00
|
|
|
// This module is host-only
|
2020-06-01 19:45:49 +02:00
|
|
|
android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommon)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2019-02-23 00:47:57 +01:00
|
|
|
return module
|
2019-02-04 23:34:10 +01:00
|
|
|
}
|
|
|
|
|
2024-03-27 10:02:12 +01:00
|
|
|
// prebuilt_usr_hyphendata is for a prebuilt artifact that is installed in
|
|
|
|
// <partition>/usr/hyphen-data/<sub_dir> directory.
|
|
|
|
func PrebuiltUserHyphenDataFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "usr/hyphen-data")
|
|
|
|
// This module is device-only
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2019-05-14 17:20:45 +02:00
|
|
|
// prebuilt_font installs a font in <partition>/fonts directory.
|
2020-06-01 19:45:49 +02:00
|
|
|
func PrebuiltFontFactory() android.Module {
|
2019-07-22 08:48:36 +02:00
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
InitPrebuiltEtcModule(module, "fonts")
|
2019-05-14 17:20:45 +02:00
|
|
|
// This module is device-only
|
2020-06-01 19:45:49 +02:00
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2019-05-14 17:20:45 +02:00
|
|
|
return module
|
|
|
|
}
|
2019-06-04 00:29:27 +02:00
|
|
|
|
2020-11-18 08:28:42 +01:00
|
|
|
// prebuilt_firmware installs a firmware file to <partition>/etc/firmware directory for system
|
|
|
|
// image.
|
|
|
|
// If soc_specific property is set to true, the firmware file is installed to the
|
|
|
|
// vendor <partition>/firmware directory for vendor image.
|
2020-06-01 19:45:49 +02:00
|
|
|
func PrebuiltFirmwareFactory() android.Module {
|
2019-07-22 08:48:36 +02:00
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
module.socInstallDirBase = "firmware"
|
|
|
|
InitPrebuiltEtcModule(module, "etc/firmware")
|
2019-06-04 00:29:27 +02:00
|
|
|
// This module is device-only
|
2020-06-01 19:45:49 +02:00
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2019-06-04 00:29:27 +02:00
|
|
|
return module
|
|
|
|
}
|
2020-06-08 23:40:25 +02:00
|
|
|
|
|
|
|
// prebuilt_dsp installs a DSP related file to <partition>/etc/dsp directory for system image.
|
2020-11-18 08:28:42 +01:00
|
|
|
// If soc_specific property is set to true, the DSP related file is installed to the
|
|
|
|
// vendor <partition>/dsp directory for vendor image.
|
2020-06-08 23:40:25 +02:00
|
|
|
func PrebuiltDSPFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
module.socInstallDirBase = "dsp"
|
|
|
|
InitPrebuiltEtcModule(module, "etc/dsp")
|
|
|
|
// This module is device-only
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2020-06-08 23:40:25 +02:00
|
|
|
return module
|
|
|
|
}
|
2021-04-09 18:41:23 +02:00
|
|
|
|
2023-10-30 23:17:25 +01:00
|
|
|
// prebuilt_renderscript_bitcode installs a *.bc file into /system/lib or /system/lib64.
|
|
|
|
func PrebuiltRenderScriptBitcodeFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
module.makeClass = "RENDERSCRIPT_BITCODE"
|
|
|
|
module.installDirBase64 = "lib64"
|
2023-11-13 21:12:06 +01:00
|
|
|
module.installAvoidMultilibConflict = true
|
2023-10-30 23:17:25 +01:00
|
|
|
InitPrebuiltEtcModule(module, "lib")
|
|
|
|
// This module is device-only
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibBoth)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2021-04-09 18:41:23 +02:00
|
|
|
// prebuilt_rfsa installs a firmware file that will be available through Qualcomm's RFSA
|
|
|
|
// to the <partition>/lib/rfsa directory.
|
|
|
|
func PrebuiltRFSAFactory() android.Module {
|
|
|
|
module := &PrebuiltEtc{}
|
|
|
|
// Ideally these would go in /vendor/dsp, but the /vendor/lib/rfsa paths are hardcoded in too
|
|
|
|
// many places outside of the application processor. They could be moved to /vendor/dsp once
|
|
|
|
// that is cleaned up.
|
|
|
|
InitPrebuiltEtcModule(module, "lib/rfsa")
|
|
|
|
// This module is device-only
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibFirst)
|
2021-10-14 01:42:59 +02:00
|
|
|
android.InitDefaultableModule(module)
|
2021-04-09 18:41:23 +02:00
|
|
|
return module
|
|
|
|
}
|