Skip to content
Snippets Groups Projects
Select Git revision
  • 4b44d24961b0e73fa920b1fb77de69b32b6fb91c
  • master default protected
  • android-7.1.2_r28_klist
  • pie-cts-release
  • pie-vts-release
  • pie-cts-dev
  • oreo-mr1-iot-release
  • sdk-release
  • oreo-m6-s4-release
  • oreo-m4-s12-release
  • pie-release
  • pie-r2-release
  • pie-r2-s1-release
  • oreo-vts-release
  • oreo-cts-release
  • oreo-dev
  • oreo-mr1-dev
  • pie-gsi
  • pie-platform-release
  • pie-dev
  • oreo-cts-dev
  • android-o-mr1-iot-release-1.0.4
  • android-9.0.0_r8
  • android-9.0.0_r7
  • android-9.0.0_r6
  • android-9.0.0_r5
  • android-8.1.0_r46
  • android-8.1.0_r45
  • android-n-iot-release-smart-display-r2
  • android-vts-8.1_r5
  • android-cts-8.1_r8
  • android-cts-8.0_r12
  • android-cts-7.1_r20
  • android-cts-7.0_r24
  • android-o-mr1-iot-release-1.0.3
  • android-cts-9.0_r1
  • android-8.1.0_r43
  • android-8.1.0_r42
  • android-n-iot-release-smart-display
  • android-p-preview-5
  • android-9.0.0_r3
41 results

Android.mk

Blame
    • William Roberts's avatar
      4b44d249
      plat_property_contexts: use fc_sort vs sort · 4b44d249
      William Roberts authored
      sort respects locale settings, so the value of LC_ALL can affect
      how sort orders things. Issues have surfaced when CTS build
      servers locale differs from image build server locale. And thus
      the prologue of property_contexts differs with what CTS was
      expecting.
      
      More information on locale and sort can be found via:
        * locale(1) - man 1 locale
        * sort(1) - man 1 sort
        * https://debbugs.gnu.org/cgi/bugreport.cgi?bug=28539
      
      
      
      Rather than deal with this locale setting use fc_sort on
      property contexts. This also has the side-effect of
      stripping comments, and thus sed can be dropped.
      
      Test: This was tested by:
        * comparing outputs to previous runs
        * booting the x86-64 emulator
      
      Change-Id: I144ef549cc11d9c61849ffc0e1b1b000f1b8d1a8
      Signed-off-by: default avatarWilliam Roberts <william.c.roberts@intel.com>
      4b44d249
      History
      plat_property_contexts: use fc_sort vs sort
      William Roberts authored
      sort respects locale settings, so the value of LC_ALL can affect
      how sort orders things. Issues have surfaced when CTS build
      servers locale differs from image build server locale. And thus
      the prologue of property_contexts differs with what CTS was
      expecting.
      
      More information on locale and sort can be found via:
        * locale(1) - man 1 locale
        * sort(1) - man 1 sort
        * https://debbugs.gnu.org/cgi/bugreport.cgi?bug=28539
      
      
      
      Rather than deal with this locale setting use fc_sort on
      property contexts. This also has the side-effect of
      stripping comments, and thus sed can be dropped.
      
      Test: This was tested by:
        * comparing outputs to previous runs
        * booting the x86-64 emulator
      
      Change-Id: I144ef549cc11d9c61849ffc0e1b1b000f1b8d1a8
      Signed-off-by: default avatarWilliam Roberts <william.c.roberts@intel.com>
    Android.mk 51.16 KiB
    LOCAL_PATH:= $(call my-dir)
    
    include $(LOCAL_PATH)/definitions.mk
    
    # PLATFORM_SEPOLICY_VERSION is a number of the form "NN.m" with "NN" mapping to
    # PLATFORM_SDK_VERSION and "m" as a minor number which allows for SELinux
    # changes independent of PLATFORM_SDK_VERSION.  This value will be set to
    # 10000.0 to represent tip-of-tree development that is inherently unstable and
    # thus designed not to work with any shipping vendor policy.  This is similar in
    # spirit to how DEFAULT_APP_TARGET_SDK is set.
    # The minor version ('m' component) must be updated every time a platform release
    # is made which breaks compatibility with the previous platform sepolicy version,
    # not just on every increase in PLATFORM_SDK_VERSION.  The minor version should
    # be reset to 0 on every bump of the PLATFORM_SDK_VERSION.
    sepolicy_major_vers := 26
    sepolicy_minor_vers := 0
    
    ifneq ($(sepolicy_major_vers), $(PLATFORM_SDK_VERSION))
    $(error sepolicy_major_version does not match PLATFORM_SDK_VERSION, please update.)
    endif
    ifneq (REL,$(PLATFORM_VERSION_CODENAME))
        sepolicy_major_vers := 10000
        sepolicy_minor_vers := 0
    endif
    PLATFORM_SEPOLICY_VERSION := $(join $(addsuffix .,$(sepolicy_major_vers)), $(sepolicy_minor_vers))
    sepolicy_major_vers :=
    sepolicy_minor_vers :=
    
    include $(CLEAR_VARS)
    # SELinux policy version.
    # Must be <= /sys/fs/selinux/policyvers reported by the Android kernel.
    # Must be within the compatibility range reported by checkpolicy -V.
    POLICYVERS ?= 30
    
    MLS_SENS=1
    MLS_CATS=1024
    
    ifdef BOARD_SEPOLICY_REPLACE
    $(error BOARD_SEPOLICY_REPLACE is no longer supported; please remove from your BoardConfig.mk or other .mk file.)
    endif
    
    ifdef BOARD_SEPOLICY_IGNORE
    $(error BOARD_SEPOLICY_IGNORE is no longer supported; please remove from your BoardConfig.mk or other .mk file.)
    endif
    
    ifdef BOARD_SEPOLICY_UNION
    $(warning BOARD_SEPOLICY_UNION is no longer required - all files found in BOARD_SEPOLICY_DIRS are implicitly unioned; please remove from your BoardConfig.mk or other .mk file.)
    endif
    
    ifdef BOARD_SEPOLICY_M4DEFS
    LOCAL_ADDITIONAL_M4DEFS := $(addprefix -D, $(BOARD_SEPOLICY_M4DEFS))
    else
    LOCAL_ADDITIONAL_M4DEFS :=
    endif
    
    # sepolicy is now divided into multiple portions:
    # public - policy exported on which non-platform policy developers may write
    #   additional policy.  types and attributes are versioned and included in
    #   delivered non-platform policy, which is to be combined with platform policy.
    # private - platform-only policy required for platform functionality but which
    #  is not exported to vendor policy developers and as such may not be assumed
    #  to exist.
    # vendor - vendor-only policy required for vendor functionality. This policy can
    #  reference the public policy but cannot reference the private policy. This
    #  policy is for components which are produced from the core/non-vendor tree and
    #  placed into a vendor partition.
    # mapping - This contains policy statements which map the attributes
    #  exposed in the public policy of previous versions to the concrete types used
    #  in this policy to ensure that policy targeting attributes from public
    #  policy from an older platform version continues to work.