@@ -729,6 +729,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/module-init-tools/Config.in"
endif
source "package/monit/Config.in"
+source "package/ncdu/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/procps/Config.in"
source "package/psmisc/Config.in"
new file mode 100644
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_NCDU
+ bool "iftop"
+ select BR2_PACKAGE_NCURSES
+ help
+ ncdu is a disk usage analyzer with an ncurses interface
+
+ http://dev.yorhel.nl/ncdu
new file mode 100644
@@ -0,0 +1,15 @@
+#############################################################
+#
+# ncdu
+#
+#############################################################
+NCDU_VERSION=1.9
+NCDU_SOURCE=ncdu-$(NCDU_VERSION).tar.gz
+NCDU_SITE=http://dev.yorhel.nl/download/
+NCDU_INSTALL_STAGING = YES
+NCDU_INSTALL_STAGING_OPT = instroot=$(STAGING_DIR) install
+NCDU_INSTALL_TARGET_OPT = instroot=$(TARGET_DIR) install
+
+NCDU_DEPENDENCIES = ncurses
+
+$(eval $(autotools-package))
Hi, I made a patch for adding ncdu to buildroot. I find it very useful to have a quick view what uses storage space on your device. Regards, Bogdan Signed-off-by: "Bogdan Radulescu" <bogdan@nimblex.net> ---