Skip to content
Snippets Groups Projects
  1. Mar 19, 2025
    • André Draszik's avatar
      Makefile: enable W=2 for dtbs_check_raviole by default · 54f58e78
      André Draszik authored
      So far, W=1 is used because W=2 warns about duplicated unit addresses
      due to USI / I2C / serial / SPI as per
      https://lore.kernel.org/all/166636173496.3593878.13529338596528679973.robh@kernel.org/
      
      
      
      I've added a small filter to filter-out these warnings specifically,
      and we can enable W=2 by default now, as W=2 is very useful generally.
      This filter is very specific on purpose, assuming order of warnings
      doesn't change from time to time, so that we can catch any (erroneous)
      changes immediately.
      
      One can still override this to W=1 on the make command line if so
      desired (but that shouldn't be needed - if there's a genuine need, we'd
      better update the filter list).
      
      Implementation-wise, we have to redirect kbuild's stderr (which
      contains the DT warnings) to stdout, so that these can be piped to the
      script and filtered, and then redirect that filtered output back to
      stderr, without mixing the original kbuild's stdout with the filtered
      output.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      54f58e78
  2. Feb 27, 2025
    • André Draszik's avatar
      Makefile: add a refcheckdocs: target · ac6c624b
      André Draszik authored
      
      Seems Rob's DT validation scripts when sending binding patches also
      explicitly run this kbuild target.
      
      Unfortunately, this target is not run by default during
      dt_binding_check, and additionally this target doesn't error in case of
      (new) invalid documentation references.
      
      Add a wrapper here that filters out warnings at this point in time and
      errors in case of new warnings, hopefully allowing us to easily spot
      any new warnings that we might add, preventing us from sending
      erroneous patches.
      
      This should get some better integration with this build system here so
      as to make it easier to run all the presubmit checks without having to
      remember the growing list of make targets to invoke manually, but for
      now it's at least something.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      ac6c624b
  3. Feb 26, 2025
  4. Jan 08, 2025
    • André Draszik's avatar
      debian build deps: pull in arc-linux-gcc · 077b573b
      André Draszik authored
      
      For compile testing. arc usually triggeres other errors that are useful
      to catch early.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      077b573b
    • André Draszik's avatar
      config fragment · 5777511f
      André Draszik authored
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      5777511f
    • André Draszik's avatar
      enable f2fs · da15ba17
      André Draszik authored
      da15ba17
    • André Draszik's avatar
      Makefile: build Image, not Image.gz · 64582d88
      André Draszik authored
      
      We don't need Image.gz - we only need Image, which we post-process by
      compressing using lz4 and then package the result of that.
      
      This shaves about 250ms off each build.
      
      While we could specify Image.lz4 here, I've opted not to do that, as
      Kbuild uses compression level -9 whereas we use --fast, which is about
      1.2 seconds faster in my environment. The size difference between the
      two is less than 6MiB, which results in a barely measurable difference
      in time when uploading to the device using fastboot boot.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      64582d88
    • André Draszik's avatar
      Makefile: avoid trying to recreate .config when not necessary · f6f92738
      André Draszik authored
      
      If .config doesn't change between two runs, Kbuild keeps the old
      version (i.e. the old time stamp).
      
      This causes this build system to try to rebuild it forever, as the
      kernel repository's time stamp $(KERNEL_STAMP) will stay newer than
      .config.
      
      To avoid that and the time Kbuild spends on doing that, we can update
      .config's time stamp.
      
      This should be safe, as once we decided to build a kernel (i.e. because
      $(KERNEL_STAMP) has changed), we know that .config is up-to-date, and
      can therefore update the time stamp. This 'touch' isn't part of the
      $(KERNEL_DOTCONFIG) recipe, because that would unconditionally force
      this build system to rebuild the kernel by invoking the $(BUILD_KERNEL)
      recipe, which we don't want. But if this $(BUILD_KERNEL) recipe is
      invoked, there is no harm (I believe) in also updating the .config time
      stamp. Kbuild is clever enough to not do additional work even with
      .config's time stamp change.
      
      This (only) helps on subsequent runs if the kernel sources haven't
      actually changed, e.g. if you run 'make run' instead of 'make rerun' to
      boot the device again, without any kernel changes.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      f6f92738
    • André Draszik's avatar
      Makefile: fix BUILD_STAMP after $(OUT)/linux/arch/arm64/boot/Image change · c926ca84
      André Draszik authored
      
      Since commit f7ef7980 ("Makefile: avoid copying of
      $(OUT)/linux/arch/arm64/boot/Image") we don't necessarily 'touch' our
      build time stamp anymore.
      
      Stop using $@ and be explicit.
      
      Fixes: f7ef7980 ("Makefile: avoid copying of $(OUT)/linux/arch/arm64/boot/Image")
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      c926ca84
  5. Jan 07, 2025
  6. Dec 23, 2024
  7. Dec 16, 2024
  8. Dec 13, 2024
    • André Draszik's avatar
      Makefile: fully drop DTBO support · 2217b043
      André Draszik authored
      
      At least one publicly available boot loader works fine now with the
      dtbo partition empty, there is no need for this to work-around broken
      boot loaders, and the README has been updated as well.
      
      Drop all support for DTBO generation and flashing from here.
      
      This will also simplify addition of support for further DTBs.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      2217b043
    • André Draszik's avatar
      README: add a link to a fastboot binary that doesn't crash without DTBO · d09d7b03
      André Draszik authored
      
      slider-15.2-12357666 certainly works fine, and has been released
      publicly via Android 15 QPR2 Beta 1.
      
      Update the README with this information.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      d09d7b03
    • André Draszik's avatar
      README: update pip package update instructions · d019b1e7
      André Draszik authored
      
      pip appears to be silly enough to break package dependencies of
      installed packages if not all installed packages are listed on the
      command line.
      
      In particular, dtschema requires jsonschema 4.17.3, while newer
      versions are available. If everything except jsonschema is up-to-date,
      the command line will only mention jsonschema, which pip treats as
      'please update jsonschema unconditionally and break all my other
      installed packages', which is surprising considering how package
      managers in Linux normally work.
      
      Update the command line to always mention the packages we actually care
      about, to hopefully avoid this issue.
      
      Signed-off-by: default avatarAndré Draszik <andre.draszik@linaro.org>
      d019b1e7
  9. Nov 28, 2024
  10. Nov 25, 2024
  11. Nov 23, 2024
  12. Nov 04, 2024
  13. Sep 25, 2024
  14. Sep 24, 2024
  15. Aug 07, 2024
Loading