diff options
-rw-r--r-- | Config.in.legacy | 8 | ||||
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/customize/Config.in | 7 | ||||
-rw-r--r-- | package/customize/customize.mk | 32 | ||||
-rw-r--r-- | package/customize/source/.empty | 0 | ||||
-rwxr-xr-x | support/scripts/pkg-stats | 1 |
6 files changed, 8 insertions, 41 deletions
diff --git a/Config.in.legacy b/Config.in.legacy index 90a7b67ba..d90132c53 100644 --- a/Config.in.legacy +++ b/Config.in.legacy @@ -44,6 +44,14 @@ endif # # Legacy options since 2012.11 # +config BR2_PACKAGE_CUSTOMIZE + bool "customize package has been removed" + select BR2_LEGACY + help + The 'customize' special package has been removed. Instead, + we recommend to create either your own packages, or use a + post-build script to customize your root filesystem. See + Buildroot's documentation for more details. config BR2_PACKAGE_XSERVER_xorg bool "X.org modular server" diff --git a/package/Config.in b/package/Config.in index 85889515c..2fad94d1f 100644 --- a/package/Config.in +++ b/package/Config.in @@ -1,7 +1,6 @@ menu "Package Selection for the target" source "package/busybox/Config.in" -source "package/customize/Config.in" # Audio and video applications source "package/multimedia/Config.in" diff --git a/package/customize/Config.in b/package/customize/Config.in deleted file mode 100644 index 8f8aaa21b..000000000 --- a/package/customize/Config.in +++ /dev/null @@ -1,7 +0,0 @@ -config BR2_PACKAGE_CUSTOMIZE - bool "customize" - depends on BR2_DEPRECATED - help - Add custom stuff to your buildroot. - - (edit package/customize/customize.mk) diff --git a/package/customize/customize.mk b/package/customize/customize.mk deleted file mode 100644 index d2b851872..000000000 --- a/package/customize/customize.mk +++ /dev/null @@ -1,32 +0,0 @@ -############################################################# -# -# Any custom stuff you feel like doing.... -# -############################################################# -CUST_DIR:=package/customize/source - -$(BUILD_DIR)/.customize: - rm -f $(BUILD_DIR)/series - (cd $(CUST_DIR); \ - /bin/ls -d * > $(BUILD_DIR)/series || \ - touch $(BUILD_DIR)/series ) - for f in `cat $(BUILD_DIR)/series`; do \ - cp -af $(CUST_DIR)/$$f $(TARGET_DIR); \ - done - rm -f $(BUILD_DIR)/series - touch $@ - -customize: $(BUILD_DIR)/.customize - -customize-clean: - rm -f $(BUILD_DIR)/.customize - -.PHONY: customize -############################################################# -# -# Toplevel Makefile options -# -############################################################# -ifeq ($(BR2_PACKAGE_CUSTOMIZE),y) -TARGETS+=customize -endif diff --git a/package/customize/source/.empty b/package/customize/source/.empty deleted file mode 100644 index e69de29bb..000000000 --- a/package/customize/source/.empty +++ /dev/null diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats index 929b8d1ea..a65a6aee3 100755 --- a/support/scripts/pkg-stats +++ b/support/scripts/pkg-stats @@ -92,7 +92,6 @@ for i in $(find boot/ linux/ package/ -name '*.mk' | sort) ; do $i = "package/games/games.mk" -o \ $i = "package/gtk2-themes/gtk2-themes.mk" -o \ $i = "package/multimedia/multimedia.mk" -o \ - $i = "package/customize/customize.mk" -o \ $i = "package/pkg-autotools.mk" -o \ $i = "package/pkg-cmake.mk" -o \ $i = "package/pkg-generic.mk" -o \ |