Commit 9237f501 authored by Tzu-Jung Lee's avatar Tzu-Jung Lee Committed by Peter Korsgaard
Browse files

dropwatch: new package



[Peter: fix help text & license, needs host-pkgconf]
Signed-off-by: default avatarTzu-Jung Lee <tjlee@ambarella.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 9466ca1d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ source "package/cache-calibrator/Config.in"
source "package/dhrystone/Config.in"
source "package/dstat/Config.in"
source "package/dmalloc/Config.in"
source "package/dropwatch/Config.in"
source "package/gdb/Config.in"
source "package/iozone/Config.in"
source "package/kexec/Config.in"
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_DROPWATCH
	bool "dropwatch"
	select BR2_PACKAGE_BINUTILS
	select BR2_PACKAGE_READLINE
	select BR2_PACKAGE_LIBNL
	help
	  Dropwatch is an interactive utility for monitoring and
	  recording packets that are dropped by the kernel

	  https://fedorahosted.org/dropwatch/
+27 −0
Original line number Diff line number Diff line
From 03bab84ca3f102274837e83ee6da4c997a9da018 Mon Sep 17 00:00:00 2001
From: Tzu-Jung Lee <tjlee@ambarella.com>
Date: Fri, 12 Jul 2013 20:00:57 +0800
Subject: [PATCH] build: modify hardcoded gcc to support buildroot

Signed-off-by: Tzu-Jung Lee <tjlee@ambarella.com>

diff --git a/src/Makefile b/src/Makefile
index 026b6ba..b87ae9f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -5,10 +5,10 @@ OBJFILES := main.o lookup.o\
 	 lookup_bfd.o lookup_kas.o
 
 dropwatch: $(OBJFILES) 
-	gcc -g -o dropwatch $(OBJFILES) $(LDFLAGS) 
+	$(CC) -g -o dropwatch $(OBJFILES) $(LDFLAGS)
 
 %.o: %.c
-	gcc $(CFLAGS) $<
+	$(CC) $(CFLAGS) $<
 clean:
 	rm -f dropwatch *.o
 
-- 
1.8.3.2
+30 −0
Original line number Diff line number Diff line
################################################################################
#
# dropwatch
#
################################################################################

DROPWATCH_VERSION = 1.4
DROPWATCH_SOURCE = dropwatch-$(DROPWATCH_VERSION).tar.bz2
DROPWATCH_SITE = https://git.fedorahosted.org/cgit/dropwatch.git/snapshot/
DROPWATCH_DEPENDENCIES = binutils libnl readline host-pkgconf
DROPWATCH_LICENSE = GPLv2
DROPWATCH_LICENSE_FILES = COPYING

define DROPWATCH_BUILD_CMDS
  $(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) build
endef

define DROPWATCH_CLEAN_CMDS
  $(TARGET_CONFIGURE_OPTS) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) clean
endef

define DROPWATCH_INSTALL_TARGET_CMDS
  $(INSTALL) -D -m 0755 $(@D)/src/dropwatch $(TARGET_DIR)/usr/bin/dropwatch
endef

define DROPWATCH_UNINSTALL_CMDS
  rm -f $(TARGET_DIR)/usr/bin/dropwatch
endef

$(eval $(generic-package))