diff options
author | Michael Walle <michael@walle.cc> | 2012-06-05 11:33:15 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:32 +0200 |
commit | 99e139d5902e488eb779cd4f00c978f3803c39be (patch) | |
tree | 44a0e2420003a2c3393b845b091bcc7b2e05a93b /net/Makefile | |
parent | 9acf1ca50d8b031511d146f6ffd73201fedce28c (diff) | |
download | u-boot-imx-99e139d5902e488eb779cd4f00c978f3803c39be.zip u-boot-imx-99e139d5902e488eb779cd4f00c978f3803c39be.tar.gz u-boot-imx-99e139d5902e488eb779cd4f00c978f3803c39be.tar.bz2 |
net: use common rand()/srand() functions
Replace rand() with the functions from lib/. The link-local network code
stores its own seed, derived from the MAC address. Thus making it
independent from calls to srand() in other modules.
Signed-off-by: Michael Walle <michael@walle.cc>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'net/Makefile')
-rw-r--r-- | net/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/Makefile b/net/Makefile index 5264687..e7764ce 100644 --- a/net/Makefile +++ b/net/Makefile @@ -34,8 +34,6 @@ COBJS-$(CONFIG_CMD_DNS) += dns.o COBJS-$(CONFIG_CMD_NET) += eth.o COBJS-$(CONFIG_CMD_LINK_LOCAL) += link_local.o COBJS-$(CONFIG_CMD_NET) += net.o -COBJS-$(CONFIG_BOOTP_RANDOM_DELAY) += net_rand.o -COBJS-$(CONFIG_CMD_LINK_LOCAL) += net_rand.o COBJS-$(CONFIG_CMD_NFS) += nfs.o COBJS-$(CONFIG_CMD_PING) += ping.o COBJS-$(CONFIG_CMD_RARP) += rarp.o |