mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-03 16:37:43 +00:00
nano: needs mmu
Fix below build error if !BR2_USE_MMU: text.o: In function `execute_command': text.c:(.text+0x7f8): undefined reference to `fork' text.o: In function `do_int_speller': text.c:(.text+0x3480): undefined reference to `fork' text.c:(.text+0x34f4): undefined reference to `fork' text.c:(.text+0x3568): undefined reference to `fork' text.o: In function `do_alt_speller': text.c:(.text+0x3914): undefined reference to `fork' collect2: ld returned 1 exit status make[3]: *** [nano] Error 1 [Peter: fork() only in full version, so force tiny for !mmu] Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
05b442a628
commit
3b901a1663
@ -1,5 +1,7 @@
|
|||||||
config BR2_PACKAGE_NANO
|
config BR2_PACKAGE_NANO
|
||||||
bool "nano"
|
bool "nano"
|
||||||
|
# full version uses fork()
|
||||||
|
select BR2_PACKAGE_NANO_TINY if !BR2_USE_MMU
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
help
|
help
|
||||||
A nice ncurses-based editor. Started out as a clone of pico.
|
A nice ncurses-based editor. Started out as a clone of pico.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user