Skip to content

Commit

Permalink
Merge branch 'master' into patch-axel-27
Browse files Browse the repository at this point in the history
  • Loading branch information
lsf37 authored Aug 9, 2024
2 parents 1861070 + babaa86 commit 7cf3b3c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmake-tool/helpers/application_settings.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function(ApplyData61ElfLoaderSettings kernel_platform kernel_sel4_arch)
# This applies to imx8mm, imx8mq (EVK and MaaXBoard), imx8mp when in aarch32 configuration
# It should be possible to use a uimage format but when tried nothing
# runs after uboot.
set(IMAGE_START_ADDR 0x41000000 CACHE INTERNAL "" FORCE)
set(IMAGE_START_ADDR 0x42000000 CACHE INTERNAL "" FORCE)
endif()
if(KernelPlatformHikey AND KernelSel4ArchAarch32)
# This is preserving what the Hikey's bootloader requires.
Expand Down
7 changes: 7 additions & 0 deletions misc/style-c.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
#
# SPDX-License-Identifier: BSD-2-Clause
#
set -e

if ! command -v astyle >/dev/null 2>&1
then
echo "astyle could not be found, it must be available to run the script."
exit 1
fi

# Format (in place) a list of files as C code.
astyle --options="${0%/*}/astylerc" "$@"
Expand Down

0 comments on commit 7cf3b3c

Please sign in to comment.