mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-08 02:09:48 +03:00
Compare commits
7 Commits
2009.05_rc
...
2009.05
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a69b3d61fb | ||
|
|
a1a2e905d8 | ||
|
|
4ee69b6b64 | ||
|
|
4088a5294d | ||
|
|
77fad2fd74 | ||
|
|
952bf43fd5 | ||
|
|
3d89b8d64e |
5
CHANGES
5
CHANGES
@@ -1,3 +1,8 @@
|
||||
2009.05, Released June 1st, 2009:
|
||||
|
||||
Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
|
||||
version and marked ubifsroot as broken.
|
||||
|
||||
2009.05-rc3, Released May 27th, 2009:
|
||||
|
||||
Fixes for toolchain (gcc arm pr37436), stable kernel versions,
|
||||
|
||||
@@ -8,7 +8,7 @@ config BR2_HAVE_DOT_CONFIG
|
||||
|
||||
config BR2_VERSION
|
||||
string
|
||||
default "2009.05-rc3"
|
||||
default "2009.05"
|
||||
|
||||
source "target/Config.in.arch"
|
||||
source "target/device/Config.in"
|
||||
|
||||
@@ -5,6 +5,19 @@
|
||||
<p>
|
||||
|
||||
<ul>
|
||||
<li><b>27 May 2009 -- 2009.05-rc3 released</b>
|
||||
|
||||
<p>We had a number of fixes post-RC2, so RC3 is out (see <a
|
||||
href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc3">CHANGES</a>
|
||||
for details). Now is the moment to test and verify that everything
|
||||
is working for your favorite config - Expect a final 2009.05 very soon.</p>
|
||||
|
||||
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2009.05-rc3.tar.bz2">2009.05-rc3
|
||||
release candidate</a>, and report any problems found to the <a
|
||||
href="lists.html">mailing list</a> or <a
|
||||
href="http://bugs.uclibc.org">bug tracker</a>.</p>
|
||||
|
||||
<li><b>19 May 2009 -- 2009.05-rc2 released</b>
|
||||
|
||||
<p>RC2 is out with more cleanups and bug fixes (see <a
|
||||
|
||||
@@ -94,7 +94,8 @@ $(DIFFUTILS_DIR)/$(DIFFUTILS_BINARY): $(DIFFUTILS_DIR)/.configured
|
||||
$(MAKE) CC=$(TARGET_CC) -C $(DIFFUTILS_DIR)
|
||||
|
||||
$(TARGET_DIR)/$(DIFFUTILS_TARGET_BINARY): $(DIFFUTILS_DIR)/$(DIFFUTILS_BINARY)
|
||||
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(DIFFUTILS_DIR) install-strip
|
||||
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(DIFFUTILS_DIR) \
|
||||
$(if $(BR2_STRIP_none),install,install-strip)
|
||||
ifneq ($(BR2_HAVE_INFOPAGES),y)
|
||||
rm -rf $(TARGET_DIR)/usr/share/info
|
||||
endif
|
||||
|
||||
@@ -28,7 +28,7 @@ $(DROPBEAR_TARGET_INSTALL_TARGET):
|
||||
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/scp
|
||||
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/ssh
|
||||
if [ ! -f $(TARGET_DIR)/etc/init.d/S50dropbear ]; then \
|
||||
$(INSTALL) -m 0755 -D package/dropbear/S50dropbear $(TARGET_DIR)/etc/init.d; \
|
||||
$(INSTALL) -m 0755 -D package/dropbear/S50dropbear $(TARGET_DIR)/etc/init.d/S50dropbear; \
|
||||
fi
|
||||
touch $@
|
||||
|
||||
|
||||
@@ -128,7 +128,7 @@ choice
|
||||
Select the specific Linux version you want to use
|
||||
|
||||
config BR2_LINUX_2_6_STABLE
|
||||
bool "The latest stable Linux kernel (2.6.29.2)"
|
||||
bool "The latest stable Linux kernel (2.6.29.4)"
|
||||
|
||||
config BR2_LINUX_2_6_29
|
||||
bool "Linux 2.6.29"
|
||||
|
||||
@@ -19,13 +19,13 @@ config LINUX26_LATEST_MM_VERSION
|
||||
|
||||
config BR2_KERNEL_CURRENT_VERSION
|
||||
string
|
||||
default "2.6.29.2"
|
||||
default "2.6.29.4"
|
||||
help
|
||||
This is the latest stable kernel (including minor version)
|
||||
|
||||
config BR2_KERNEL_LATEST_2_6_29
|
||||
string
|
||||
default "2"
|
||||
default "4"
|
||||
|
||||
config BR2_KERNEL_LATEST_2_6_28
|
||||
string
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
config BR2_TARGET_ROOTFS_UBIFS
|
||||
bool "ubifs root filesystem"
|
||||
depends on BROKEN # upstream git gone, should use mtd-utils
|
||||
select BR2_HOST_FAKEROOT
|
||||
help
|
||||
Build a ubifs root filesystem
|
||||
|
||||
@@ -13,7 +13,7 @@ MKFS_UBIFS_CAT:=$(ZCAT)
|
||||
MKFS_UBIFS_NAME:=mkfs.ubifs
|
||||
|
||||
$(DL_DIR)/$(MKFS_UBIFS_SOURCE):
|
||||
$(call DOWNLOAD,"$(MKFS_UBIFS_URL)")
|
||||
$(WGET) -O $(DL_DIR)/$(MKFS_UBIFS_SOURCE) "$(MKFS_UBIFS_URL)"
|
||||
|
||||
$(MKFS_UBIFS_DIR)/.unpacked: $(DL_DIR)/$(MKFS_UBIFS_SOURCE)
|
||||
$(ZCAT) $(DL_DIR)/$(MKFS_UBIFS_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
||||
@@ -108,7 +108,7 @@ ifneq ($(UBIFS_COPYTO),)
|
||||
@cp -f $(UBIFS_TARGET) $(UBIFS_COPYTO)
|
||||
endif
|
||||
|
||||
ubifsroot-source: $(DL_DIR)/$(GENUBIFS_SOURCE)
|
||||
ubifsroot-source: $(DL_DIR)/$(MKFS_UBIFS_SOURCE)
|
||||
|
||||
ubifsroot-clean:
|
||||
-$(MAKE) -C $(MKFS_UBIFS_DIR) clean
|
||||
|
||||
Reference in New Issue
Block a user