confusing busybox config option description patch, busybox can be built as shared libs, hardlinks ... etc. rename to full install. Patch from Nigel Kukard

This commit is contained in:
John Voltz 2008-03-21 17:56:00 +00:00
parent 577cec7bc6
commit 69ae3cec84
2 changed files with 5 additions and 5 deletions

View File

@ -49,13 +49,13 @@ config BR2_BUSYBOX_VERSION
default "1.9.2" if BR2_BUSYBOX_VERSION_1_9_X default "1.9.2" if BR2_BUSYBOX_VERSION_1_9_X
config BR2_PACKAGE_BUSYBOX_INSTALL_SYMLINKS config BR2_PACKAGE_BUSYBOX_FULLINSTALL
bool "Install symlinks for BusyBox applets" bool "Run BusyBox's own full installation"
depends BR2_PACKAGE_BUSYBOX depends BR2_PACKAGE_BUSYBOX
default y default y
help help
If you want to automatically install symlinks for all the If you want to run BusyBox's own full install for the
supported applets to the busybox binary, then answer Y. configured applets, then answer Y.
This may overwrite files from other packages if your This may overwrite files from other packages if your
busybox includes replacement applets for the package. busybox includes replacement applets for the package.

View File

@ -112,7 +112,7 @@ ifeq ($(BR2_PREFER_IMA)$(BR2_PACKAGE_BUSYBOX_SNAPSHOT),yy)
endif endif
$(TARGET_DIR)/bin/busybox: $(BUSYBOX_DIR)/busybox $(TARGET_DIR)/bin/busybox: $(BUSYBOX_DIR)/busybox
ifeq ($(BR2_PACKAGE_BUSYBOX_INSTALL_SYMLINKS),y) ifeq ($(BR2_PACKAGE_BUSYBOX_FULLINSTALL),y)
$(MAKE) CC=$(TARGET_CC) CROSS_COMPILE="$(TARGET_CROSS)" \ $(MAKE) CC=$(TARGET_CC) CROSS_COMPILE="$(TARGET_CROSS)" \
CROSS="$(TARGET_CROSS)" PREFIX="$(TARGET_DIR)" \ CROSS="$(TARGET_CROSS)" PREFIX="$(TARGET_DIR)" \
ARCH=$(KERNEL_ARCH) \ ARCH=$(KERNEL_ARCH) \