Skip to content
Snippets Groups Projects
  1. Jul 09, 2019
    • Vasyl Gello's avatar
      Fix bootanimation destpath if building off-tree · bc4bce82
      Vasyl Gello authored
      
      If the build is invoked off-tree, like:
      
          . build/envsetup.sh
          export OUT_DIR=/some/other/dir/out
          export DIST_DIR=/some/other/dir/dist
          breakfast chagalllte
          mka \
              target-files-package dist
      
      the bootanimation.zip is correctly generated in $OUT_DIR.
      
      However, if the user overrides directories after breakfast, i.e:
      
          . build/envsetup.sh
          breakfast chagalllte
          mka \
              OUT_DIR=/some/other/dir/out \
              DIST_DIR=/some/other/dir/dist \
              target-files-package dist
      
      the destination path of intermediate bootanimation.zip is still
      controlled by $ANDROID_PRODUCT_OUT which is set by build/envsetup.sh.
      This leads to a copy error and a failed build.
      
      The fix overrides $ANDROID_PRODUCT_OUT by the always-known PRODUCT_OUT
      (make variable defined in build/core/envsetup.mk), making it error-prone
      to environment variable declaration.
      
      Also, the "sh" invocation is replaced with generic make-variable
      $(shell).
      
      Change-Id: Ic94d1b538fc01946b628f9b5d776548a03acde97
      Signed-off-by: default avatarVasyl Gello <vasek.gello@gmail.com>
      bc4bce82
  2. Jun 27, 2019
  3. Jun 26, 2019
  4. Jun 25, 2019
  5. Jun 18, 2019
  6. Jun 16, 2019
  7. Jun 15, 2019
  8. Jun 12, 2019
  9. Jun 07, 2019
  10. Jun 06, 2019
    • Asher Simonds's avatar
      Update default wallpaper · 337f13e4
      Asher Simonds authored
      
      Change-Id: Icfb58abdda66636e220187269d32475e917eb11f
      Signed-off-by: default avatarJoey <joey@lineageos.org>
      337f13e4
    • Rashed Abdel-Tawab's avatar
      lineage: Rework DTBO image generation · 60fe9352
      Rashed Abdel-Tawab authored
      Currently we handle the DTBO images from start to finish, including
      AVB footers, and just drop them in $(PRODUCT_OUT)/dtbo.img when done.
      While this works for the most part, we are limited in what we can do
      with the DTBO images. For example non-A/B device recovery images must
      have a copy of the DTBO image appended to recovery (see AOSP docs:
      https://source.android.com/devices/bootloader/recovery-image ). This
      means that we need to pass the pre-AVB dtbo image into
      BOARD_PREBUILT_DTBOIMAGE in order to let the AOSP build system handle it.
      
      This commit reworks the way the DTBO images are built, placing them at
      $(PRODUCT_OUT)/dtbo-pre.img instead and setting BOARD_PREBUILT_DTBOIMAGE
      to that path so the AOSP build system can pick the images up and sign
      them and append to recovery (for applicable devices).
      
      Change-Id: I8819d7cd92ba298de67dbc7f6b321917ba8524f1
      60fe9352
  11. Jun 03, 2019
  12. Jun 01, 2019
  13. May 31, 2019
  14. May 23, 2019
  15. May 19, 2019
  16. May 06, 2019
  17. May 02, 2019
    • Thor Lee's avatar
      kernel: Fix modules path generated in modules.dep · 75975892
      Thor Lee authored
      This patch fixes the error generated path of modules in modules.dep.
      
      Tested on Redmi Note 5(whyred).
      
      Before:
      /vendorlib/modules/test-iosched.ko:
      /vendorlib/modules/mpq-adapter.ko:
      /vendorlib/modules/ufs_test.ko: /vendorlib/modules/test-iosched.ko
      /vendorlib/modules/rdbg.ko:
      /vendorlib/modules/br_netfilter.ko:
      /vendorlib/modules/gspca_main.ko:
      /vendorlib/modules/mpq-dmx-hw-plugin.ko: /vendorlib/modules/mpq-adapter.ko
      
      After:
      /vendor/lib/modules/test-iosched.ko:
      /vendor/lib/modules/mpq-adapter.ko:
      /vendor/lib/modules/ufs_test.ko: /vendor/lib/modules/test-iosched.ko
      /vendor/lib/modules/rdbg.ko:
      /vendor/lib/modules/br_netfilter.ko:
      /vendor/lib/modules/gspca_main.ko:
      /vendor/lib/modules/mpq-dmx-hw-plugin.ko: /vendor/lib/modules/mpq-adapter.ko
      
      Change-Id: I84d51f4c418fda0d99890db0fd5d976c42f54295
      75975892
  18. Apr 24, 2019
  19. Apr 11, 2019
  20. Apr 09, 2019
  21. Mar 14, 2019
  22. Mar 09, 2019
Loading