aboutsummaryrefslogtreecommitdiff
path: root/payloads
diff options
context:
space:
mode:
Diffstat (limited to 'payloads')
-rw-r--r--payloads/external/FILO/Makefile2
-rw-r--r--payloads/libpayload/arch/arm64/mmu.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/payloads/external/FILO/Makefile b/payloads/external/FILO/Makefile
index 6175cfe62c..90895572a9 100644
--- a/payloads/external/FILO/Makefile
+++ b/payloads/external/FILO/Makefile
@@ -44,7 +44,7 @@ libpayload: checkout
$(MAKE) && $(MAKE) DESTDIR=../external/FILO/filo/build install
clean:
- test -d filo && $(MAKE) -C filo clean || exit 0
+ test -d filo && $(MAKE) -C filo clean LIBCONFIG_PATH=../../../libpayload || exit 0
distclean:
rm -rf filo
diff --git a/payloads/libpayload/arch/arm64/mmu.c b/payloads/libpayload/arch/arm64/mmu.c
index bc4c233479..4c8f8c15a8 100644
--- a/payloads/libpayload/arch/arm64/mmu.c
+++ b/payloads/libpayload/arch/arm64/mmu.c
@@ -389,7 +389,7 @@ struct mmu_new_range_prop {
/*
* Func: mmu_is_range_free
- * Desc: We need to ensure that the new range being allocated doesnt overlap
+ * Desc: We need to ensure that the new range being allocated doesn't overlap
* with any used memory range. Basically:
* 1. Memory ranges used by the payload (usedmem_ranges)
* 2. Any area that falls below _end symbol in linker script (Kernel needs to be