Commit 12ccc43f authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

package/customize: remove



This mechanism of root filesystem customization has been deprecated
since a long time, so let's remove it now.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: default avatarLuca Ceresoli <luca@lucaceresoli.net>
Acked-by: default avatar"Samuel Martin" <s.martin49@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 04dea0c4
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -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"
+0 −1
Original line number Diff line number Diff line
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"

package/customize/Config.in

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
config BR2_PACKAGE_CUSTOMIZE
	bool "customize"
	depends on BR2_DEPRECATED
	help
	  Add custom stuff to your buildroot.

	  (edit package/customize/customize.mk)

package/customize/customize.mk

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
#############################################################
#
# 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

package/customize/source/.empty

deleted100644 → 0
+0 −0

Empty file deleted.

Loading