Julien Corjon
f6a9094103
package/netplug: init script create needed lock directory
...
Init script use /var/lock/subsys/netplugd but directory
/var/lock/subsys can be missing.
Signed-off-by: Julien Corjon <corjon.j@ecagroup.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
(cherry picked from commit c81c6d8f3d )
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2017-09-06 14:51:59 +02:00
Gustavo Zacarias
15c229ea42
netplug: use $(TARGET_MAKE_ENV) when calling $(MAKE)
...
Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com >
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2016-10-22 15:19:24 +02:00
Thomas Petazzoni
225e1681cc
netplug: add two patches to fix musl build issues
...
This commit adds two patches to netplug that are needed for this package
to build with musl:
- One patch to add a missing header inclusion
- One patch to fix a conflicting prototype on __assert_fail().
Fixes:
http://autobuild.buildroot.net/results/c2a5dfedba46cc8eb3d0c5c43f1f76fe0bb1805f/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2016-08-08 23:48:13 +02:00
Maxime Hadjinlian
0f75b2635e
package: Replace 'echo -n' by 'printf'
...
'echo -n' is not a POSIX construct (no flag support), we shoud use
'printf', especially in init script.
This patch was generated by the following command line:
git grep -l 'echo -n' -- `git ls-files | grep -v 'patch'` | xargs sed -i 's/echo -n/printf/'
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com >
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2015-10-04 00:56:41 +02:00
Gustavo Zacarias
383d282e5c
netplug: add hash file
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2015-07-28 22:37:10 +02:00
Alex Suykov
b8da356e5d
netplug: systemd support
...
[Thomas: use relative symlink instead of absolute symlink.]
Signed-off-by: Alex Suykov <alex.suykov@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2015-07-13 23:23:57 +02:00
Peter Korsgaard
298cd8eaa2
package/*: rename patches according to the new policy
...
Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345 )
Signed-off-by: Samuel Martin <s.martin49@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2015-02-03 14:52:56 +01:00
Gustavo Zacarias
a3a22cdf19
netplug: add license information
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2014-06-25 23:04:35 +02:00
Thomas De Schampheleire
3d86d29bf0
packages: remove package clean commands
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-08 19:42:34 +01:00
Thomas De Schampheleire
eb7bd9ef61
packages: remove uninstall commands
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-06 09:40:40 +01:00
Axel Lin
6e9ff55f3f
netplug: needs mmu
...
Signed-off-by: Axel Lin <axel.lin@ingics.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-09-11 12:54:29 +02:00
Peter Sanford
2e20d072ae
netplug: properly install init.d script.
...
Looks like this was lost in 20d4792e .
[Peter: use _INSTALL_INIT_SYSV, explicitly delete script on uninstall]
Signed-off-by: Peter Sanford <psanford@nearbuysystems.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-09-04 00:16:50 +02:00
Jerzy Grzegorek
e0d9d33cc2
fix white spaces
...
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-07-20 21:13:57 +02:00
Alexandre Belloni
8dfd59d114
Normalize separator size to 80
...
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-06-06 22:30:24 +02:00
Alexandre Belloni
702704014d
Fix package headers to comply with coding style
...
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2013-06-06 17:26:35 +02:00
Arnout Vandecappelle (Essensium/Mind)
e1502ebc0c
all packages: rename XXXTARGETS to xxx-package
...
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2012-07-17 20:23:05 +02:00
Luca Ceresoli
1a994d58af
Remove stray $ character from a bunch of init scripts
...
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2012-03-15 22:11:25 +01:00
Thomas Petazzoni
0849e8193e
package: remove useless arguments from GENTARGETS
...
Thanks to the pkgparentdir and pkgname functions, we can rewrite the
GENTARGETS macro in a way that avoids the need for each package to
repeat its name and the directory in which it is present.
[Peter: pkgdir->pkgparentdir]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2011-09-29 23:09:58 +02:00
Martin Banky
20d4792e5b
netplug: convert to gentargets and bump to 1.2.9.2
...
Signed-off-by: Martin Banky <Martin.Banky@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2010-12-14 00:56:10 +01:00
Thomas Petazzoni
a1c8fa41f6
Update all packages to quote $(TARGET_CC)
...
Now that TARGET_CC contains several space-separated words, it must be
used quoted everywhere.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2010-07-07 08:20:21 +02:00
Thomas Petazzoni
c554cc2a2e
netplug: disable -Werror to fix build failure
...
netplug uses nested functions, and gcc generates a warning that
is turned into an error:
cc1: warnings being treated as errors
if_info.c: In function 'ifsm_scriptdone':
if_info.c:289: error: generating trampoline in object (requires executable stack)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2010-05-11 08:59:02 +02:00
Will Newton
422ce6536b
package: Remove unnecessary dependencies on uclibc.
...
A C library will have been built by the toolchain makefiles, so there is no
need for packages to explicitly depend on uclibc.
Signed-off-by: Will Newton <will.newton@gmail.com >
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk >
2009-09-03 20:22:38 +02:00
Peter Korsgaard
4a7bfd2775
package/: convert to DOWNLOAD helper
2009-01-16 11:42:52 +00:00
Peter Korsgaard
ac1d92c425
package/: get rid of unneeded $(strip ..)
2008-12-08 08:15:27 +00:00
Peter Korsgaard
4683420c4c
Kconfig: remove 'default n'
...
'default n' is the default, so there's no need to say it explicitly.
2008-07-17 20:01:44 +00:00
Hamish Moffatt
aa73d17530
Don't use long options to start-stop-daemon as they may be disabled in the busybox configuration
2008-03-18 00:20:24 +00:00
"Steven J. Hill"
bafa6d62cd
Remove old patch and fix the type properly.
2008-02-28 02:19:38 +00:00
"Steven J. Hill"
bebbe792df
Make sure 'linkage.h' headers are installed. Add hack to bootstrap newer
...
versions of GCC. Filter out 'gnu99' from assembly flags. Use the
'headers' target instead of 'pregen' to prepare for more NPTL
integration. Fix broken MTD package configuration....someone believes in
the Klingon release process apparently. Fix build issues with netplug
and libpng. Fix source path for microcom as original site no longer
exists.
2008-02-28 02:13:42 +00:00
Bernhard Reutner-Fischer
14a71561a3
- just use the strip binary to avoid confusing libtool (quotes)
...
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
2007-10-01 16:15:31 +00:00
Ulf Samuelsson
e1621a4a2a
Use <package>_VERSION in all <package>.mk instead of <package>_VER
2007-07-11 14:06:06 +00:00
"Steven J. Hill"
6b00c90d70
Rename all INIT scripts to have the numerical prefixes to easily see the start-up order.
2007-05-09 22:48:41 +00:00
Bernhard Reutner-Fischer
c3848942cf
- andersee, please use ZCAT / BZCAT as configured by the user.
...
(see buildroot/Config.in config BR2_ZCAT and BR2_BZCAT that are available as ZCAT and BZCAT). Thanks..
2006-12-13 09:04:58 +00:00
Eric Andersen
b3d71710a3
add netplug package
2006-12-12 22:13:41 +00:00