package/irda-utils: fix typos in patch descriptions

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Peter Korsgaard 2024-09-14 09:19:09 +02:00 committed by Thomas Petazzoni
parent c186db4741
commit 1961a86751
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ written by Mike Frysinger
https://sourceforge.net/tracker/?func=detail&aid=3132053&group_id=5616&atid=305616
Rather than using the fork function (which doesnt work on nommu
Rather than using the fork function (which doesn't work on nommu
systems), simply use the daemon() function instead (which does
work). this should work the same before and after for all systems.

View file

@ -3,7 +3,7 @@ written by Mike Frysinger
https://sourceforge.net/tracker/?func=detail&aid=3132056&group_id=5616&atid=305616
nommu systems cannot fork() as the hardware cannot support
it. irattach uses it as a minor optimization, but it isnt
it. irattach uses it as a minor optimization, but it isn't
necessary for correct functioning of the utility. so add a
NO_FORK define so we nommu peeps can do CFLAGS="... -DNO_FORK=1
..." and use it in our embedded systems.