Compare commits
10 Commits
2009.08_rc
...
2009.08
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49c47f55a8 | ||
|
|
2f6e59d00b | ||
|
|
f0eb8b58e4 | ||
|
|
cc8a917598 | ||
|
|
014df317d4 | ||
|
|
621e8726f9 | ||
|
|
8ed829a179 | ||
|
|
688c388ce7 | ||
|
|
1af58aff72 | ||
|
|
e5413e83d8 |
12
CHANGES
12
CHANGES
@@ -1,3 +1,15 @@
|
||||
2009.08, Released August 31th, 2009:
|
||||
|
||||
Additional fixes and cleanups.
|
||||
|
||||
Updated/fixed packages: ctorrent, saveconfig/getconfig,
|
||||
sdl_net, util-linux.
|
||||
|
||||
Issues resolved (http://bugs.uclibc.org):
|
||||
|
||||
#529: util-linux doesn't find headers and include libs correctly
|
||||
#557: Build ctorrent with SSL support if available
|
||||
|
||||
2009.08-rc3, Released August 26th, 2009:
|
||||
|
||||
Additional fixes and cleanups.
|
||||
|
||||
@@ -8,7 +8,7 @@ config BR2_HAVE_DOT_CONFIG
|
||||
|
||||
config BR2_VERSION
|
||||
string
|
||||
default "2009.08-rc3"
|
||||
default "2009.08"
|
||||
|
||||
source "target/Config.in.arch"
|
||||
source "target/device/Config.in"
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
|
||||
<p>
|
||||
|
||||
The latest stable release is <b>2009.05</b>, which can be downloaded
|
||||
The latest stable release is <b>2009.08</b>, which can be downloaded
|
||||
here:<p>
|
||||
|
||||
<a href="/downloads/buildroot-2009.05.tar.gz">buildroot-2009.05.tar.gz</a>
|
||||
<a href="/downloads/buildroot-2009.08.tar.gz">buildroot-2009.08.tar.gz</a>
|
||||
or
|
||||
<a href="/downloads/buildroot-2009.05.tar.bz2">buildroot-2009.05.tar.bz2</a>.
|
||||
<a href="/downloads/buildroot-2009.08.tar.bz2">buildroot-2009.08.tar.bz2</a>.
|
||||
<p>
|
||||
|
||||
<!--
|
||||
The latest release candidate is <b>2009.08-rc3</b>, which can be
|
||||
downloaded here:<p>
|
||||
|
||||
@@ -21,8 +21,8 @@ downloaded here:<p>
|
||||
or
|
||||
<a href="/downloads/buildroot-2009.08-rc3.tar.bz2">buildroot-2009.08-rc3.tar.bz2</a>.
|
||||
<p>
|
||||
|
||||
This and earlier releases can always be dowloaded from
|
||||
-->
|
||||
This and earlier releases can always be downloaded from
|
||||
<a href="/downloads/">http://buildroot.net/downloads/</a>.
|
||||
|
||||
<p>
|
||||
@@ -43,4 +43,3 @@ follow development, but cannot or do not wish to use Git.
|
||||
</ul>
|
||||
|
||||
<!--#include file="footer.html" -->
|
||||
|
||||
|
||||
@@ -5,6 +5,16 @@
|
||||
<p>
|
||||
|
||||
<ul>
|
||||
<li><b>31 August 2009 -- 2009.08 released</b>
|
||||
|
||||
<p>The stable 2009.08 release is out - Thanks to everyone
|
||||
contributing and testing the release candidates. See the
|
||||
<a href="http://lists.busybox.net/pipermail/buildroot/2009-August/029018.html">announcement</a>
|
||||
or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08">CHANGES</a>
|
||||
for more details, and go to the <a href="/downloads/">downloads page</a>
|
||||
to pick up the <a href="/downloads/buildroot-2009.08.tar.bz2">2009.08
|
||||
release</a>.</p>
|
||||
|
||||
<li><b>26 August 2009 -- 2009.08-rc3 released</b>
|
||||
<p>A number of bugfixes have been added to the tree since RC2
|
||||
(especially thanks to Thomas Petazzoni) - See the <a
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
CTORRENT_VERSION:=dnh3.3.2
|
||||
CTORRENT_SOURCE:=ctorrent-$(CTORRENT_VERSION).tar.gz
|
||||
CTORRENT_SITE:=http://www.rahul.net/dholmes/ctorrent/
|
||||
CTORRENT_CONF_OPT:=--with-ssl=no
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
CTORRENT_CONF_OPT+=--with-ssl=yes
|
||||
CTORRENT_DEPENDENCIES+=openssl
|
||||
else
|
||||
CTORRENT_CONF_OPT+=--with-ssl=no
|
||||
endif
|
||||
|
||||
$(eval $(call AUTOTARGETS,package,ctorrent))
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
#############################################################
|
||||
PRBOOM_VERSION:=2.4.7
|
||||
|
||||
PRBOOM_DEPENDENCIES = sdl SDL_net sdl_mixer
|
||||
PRBOOM_DEPENDENCIES = sdl sdl_net sdl_mixer
|
||||
|
||||
$(eval $(call AUTOTARGETS,package/games,prboom))
|
||||
|
||||
|
||||
@@ -14,4 +14,4 @@ SDL_NET_INSTALL_STAGING = YES
|
||||
|
||||
SDL_NET_DEPENDENCIES = sdl
|
||||
|
||||
$(eval $(call AUTOTARGETS,package,SDL_net))
|
||||
$(eval $(call AUTOTARGETS,package,sdl_net))
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
config BR2_PACKAGE_UTIL-LINUX
|
||||
bool "util-linux"
|
||||
select BR2_PACKAGE_GETTEXT if BR2_ENABLE_LOCALE
|
||||
select BR2_PACKAGE_LIBINTL if BR2_ENABLE_LOCALE
|
||||
help
|
||||
Various useful/essential Linux utilities.
|
||||
|
||||
|
||||
@@ -18,6 +18,11 @@ else
|
||||
UTIL-LINUX_SCHED_UTILS:=--disable-schedutils
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBINTL),y)
|
||||
UTIL-LINUX_DEPENDENCIES += libintl
|
||||
UTIL-LINUX_MAKE_OPT = LIBS=-lintl
|
||||
endif
|
||||
|
||||
$(DL_DIR)/$(UTIL-LINUX_SOURCE):
|
||||
$(call DOWNLOAD,$(UTIL-LINUX_SITE),$(UTIL-LINUX_SOURCE))
|
||||
|
||||
@@ -30,6 +35,7 @@ $(UTIL-LINUX_DIR)/.configured: $(UTIL-LINUX_DIR)/.unpacked
|
||||
(cd $(UTIL-LINUX_DIR); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
ac_cv_lib_blkid_blkid_known_fstype=no \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
@@ -55,6 +61,7 @@ $(UTIL-LINUX_BINARY): $(UTIL-LINUX_DIR)/.configured
|
||||
ARCH=$(ARCH) \
|
||||
CC=$(TARGET_CC) \
|
||||
OPT="$(TARGET_CFLAGS)" \
|
||||
$(UTIL-LINUX_MAKE_OPT) \
|
||||
HAVE_SLANG="NO"
|
||||
|
||||
$(UTIL-LINUX_TARGET_BINARY): $(UTIL-LINUX_BINARY)
|
||||
@@ -65,11 +72,10 @@ $(UTIL-LINUX_TARGET_BINARY): $(UTIL-LINUX_BINARY)
|
||||
#If both util-linux and busybox are selected, make certain util-linux
|
||||
#wins the fight over who gets to have their utils actually installed
|
||||
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
||||
util-linux: uclibc busybox $(UTIL-LINUX_TARGET_BINARY)
|
||||
else
|
||||
util-linux: uclibc $(UTIL-LINUX_TARGET_BINARY)
|
||||
UTIL-LINUX_DEPENDENCIES := busybox $(UTIL-LINUX_DEPENDENCIES)
|
||||
endif
|
||||
|
||||
util-linux: uclibc $(UTIL-LINUX_DEPENDENCIES) $(UTIL-LINUX_TARGET_BINARY)
|
||||
|
||||
util-linux-source: $(DL_DIR)/$(UTIL-LINUX_SOURCE)
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ $(TARGET_DIR)/etc/br-version: .config
|
||||
mkdir -p $(TARGET_DIR)/etc
|
||||
echo $(BR2_VERSION)$(shell $(TOPDIR)/scripts/setlocalversion) >$@
|
||||
|
||||
saveconfig: $(CONFIG)/conf
|
||||
saveconfig:
|
||||
mkdir -p $(LOCAL)/$(PROJECT)
|
||||
-cp .config $(PROJECT_FILE)
|
||||
if [ -f $(LINUX26_DIR)/.config ]; then \
|
||||
@@ -48,14 +48,5 @@ saveconfig: $(CONFIG)/conf
|
||||
$(LOCAL)/$(PROJECT)/u-boot/$(PROJECT).h; \
|
||||
fi
|
||||
|
||||
getconfig: $(CONFIG)/conf
|
||||
getconfig:
|
||||
-cp $(LOCAL)/$(PROJECT)/$(PROJECT).config .config
|
||||
|
||||
vendor-dbg:
|
||||
@echo VENDOR_SITE=$(BR2_VENDOR_SITE)
|
||||
@echo VENDOR_SUFFIX=$(BR2_VENDOR_SUFFIX)
|
||||
@echo VENDOR_BINUTILS_RELEASE=$(BR2_VENDOR_BINUTILS_RELEASE)
|
||||
@echo VENDOR_GCC_RELEASE=$(BR2_VENDOR_GCC_RELEASE)
|
||||
@echo VENDOR_UCLIBC_RELEASE=$(BR2_VENDOR_UCLIBC_RELEASE)
|
||||
@echo VENDOR_GDB_RELEASE=$(BR2_VENDOR_GDB_RELEASE)
|
||||
@echo VENDOR_PATCH_DIR=$(BR2_VENDOR_PATCH_DIR)
|
||||
|
||||
@@ -264,7 +264,7 @@ EXE mk sawman OK
|
||||
EXE mk sdl OK
|
||||
EXE mk sdl_image OK
|
||||
EXE mk sdl_mixer OK
|
||||
EXE mk SDL_net OK
|
||||
EXE mk sdl_net OK
|
||||
EXE mk sdl_ttf OK
|
||||
EXE mk tiff OK
|
||||
comment busybox graphic applications
|
||||
|
||||
@@ -30,6 +30,7 @@ config BR2_TARGET_UBOOT_2009_01
|
||||
|
||||
config BR2_TARGET_UBOOT_2008_10
|
||||
bool "u-boot-2008.10"
|
||||
depends on BR2_DEPRECATED
|
||||
|
||||
config BR2_TARGET_UBOOT_1_3_4
|
||||
bool "u-boot-1.3.4"
|
||||
|
||||
Reference in New Issue
Block a user