mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-09 16:13:56 -03:00
PX4: disable auth command to keep us below 1MByte
This commit is contained in:
parent
420889d061
commit
5a78c584d2
@ -51,11 +51,6 @@ MODULES += systemcmds/reboot
|
|||||||
MODULES += systemcmds/top
|
MODULES += systemcmds/top
|
||||||
MODULES += systemcmds/tests
|
MODULES += systemcmds/tests
|
||||||
MODULES += systemcmds/nshterm
|
MODULES += systemcmds/nshterm
|
||||||
# the conditional allows for building with upstream master
|
|
||||||
# which doesn't have auth
|
|
||||||
ifneq ($(wildcard $(PX4_ROOT)/src/systemcmds/auth),)
|
|
||||||
MODULES += systemcmds/auth
|
|
||||||
endif
|
|
||||||
MODULES += systemcmds/mtd
|
MODULES += systemcmds/mtd
|
||||||
ifneq ($(wildcard $(PX4_ROOT)/src/systemcmds/reflect),)
|
ifneq ($(wildcard $(PX4_ROOT)/src/systemcmds/reflect),)
|
||||||
MODULES += systemcmds/reflect
|
MODULES += systemcmds/reflect
|
||||||
@ -71,12 +66,16 @@ MODULES += modules/systemlib
|
|||||||
MODULES += modules/systemlib/mixer
|
MODULES += modules/systemlib/mixer
|
||||||
MODULES += modules/uORB
|
MODULES += modules/uORB
|
||||||
MODULES += lib/mathlib/math/filter
|
MODULES += lib/mathlib/math/filter
|
||||||
# the conditional allows for building with upstream master
|
|
||||||
# which doesn't have libtomcrypt and libtomfastmath
|
# Note: auth disabled to keep us under 1MB flash because of STM32 bug
|
||||||
ifneq ($(wildcard $(PX4_ROOT)/src/modules/libtomfastmath),)
|
#ifneq ($(wildcard $(PX4_ROOT)/src/systemcmds/auth),)
|
||||||
MODULES += modules/libtomfastmath
|
#MODULES += systemcmds/auth
|
||||||
MODULES += modules/libtomcrypt
|
#endif
|
||||||
endif
|
#ifneq ($(wildcard $(PX4_ROOT)/src/modules/libtomfastmath),)
|
||||||
|
#MODULES += modules/libtomfastmath
|
||||||
|
#MODULES += modules/libtomcrypt
|
||||||
|
#endif
|
||||||
|
|
||||||
MODULES += lib/conversion
|
MODULES += lib/conversion
|
||||||
|
|
||||||
ifneq ($(wildcard $(SKETCHBOOK)/../uavcan),)
|
ifneq ($(wildcard $(SKETCHBOOK)/../uavcan),)
|
||||||
|
Loading…
Reference in New Issue
Block a user