add support for using busybox snapshot
This commit is contained in:
@@ -9,3 +9,11 @@ config BR2_PACKAGE_BUSYBOX
|
|||||||
|
|
||||||
Most people will answer Y.
|
Most people will answer Y.
|
||||||
|
|
||||||
|
config BR2_PACKAGE_BUSYBOX_SNAPSHOT
|
||||||
|
bool "Use the daily snapshot of busybox?"
|
||||||
|
depends BR2_PACKAGE_BUSYBOX
|
||||||
|
default y
|
||||||
|
help
|
||||||
|
Use the latest busybox CVS snapshot instead of release.
|
||||||
|
|
||||||
|
For fun, you should say Y.
|
||||||
|
|||||||
@@ -4,14 +4,15 @@
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
ifneq ($(strip $(USE_BUSYBOX_SNAPSHOT)),)
|
ifeq ($(strip $(BR2_PACKAGE_BUSYBOX_SNAPSHOT)),y)
|
||||||
# Be aware that this changes daily....
|
# Be aware that this changes daily....
|
||||||
BUSYBOX_DIR:=$(BUILD_DIR)/busybox
|
BUSYBOX_DIR:=$(BUILD_DIR)/busybox
|
||||||
BUSYBOX_SOURCE:=busybox-$(strip $(USE_BUSYBOX_SNAPSHOT)).tar.bz2
|
BUSYBOX_SOURCE:=busybox-snapshot.tar.bz2
|
||||||
BUSYBOX_SITE:=http://www.busybox.net/downloads/snapshots
|
BUSYBOX_SITE:=http://www.busybox.net/downloads/snapshots
|
||||||
else
|
else
|
||||||
BUSYBOX_DIR:=$(BUILD_DIR)/busybox-1.00-rc2
|
BUSYBOX_VER:=1.00-rc3
|
||||||
BUSYBOX_SOURCE:=busybox-1.00-rc2.tar.bz2
|
BUSYBOX_DIR:=$(BUILD_DIR)/busybox-$(BUSYBOX_VER)
|
||||||
|
BUSYBOX_SOURCE:=busybox-$(BUSYBOX_VER).tar.bz2
|
||||||
BUSYBOX_SITE:=http://www.busybox.net/downloads
|
BUSYBOX_SITE:=http://www.busybox.net/downloads
|
||||||
endif
|
endif
|
||||||
BUSYBOX_UNZIP=bzcat
|
BUSYBOX_UNZIP=bzcat
|
||||||
|
|||||||
Reference in New Issue
Block a user