mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-11 14:10:13 +03:00
Compare commits
6 Commits
2011.11_rc
...
2011.11
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c29253ef2e | ||
|
|
47c46ea1fc | ||
|
|
effecb4a01 | ||
|
|
c6932d2148 | ||
|
|
c71833418e | ||
|
|
e4c61e5ea4 |
8
CHANGES
8
CHANGES
@@ -1,3 +1,11 @@
|
||||
2011.11, Released November 30th, 2011:
|
||||
|
||||
Fixes all over the tree.
|
||||
|
||||
Bump kernel headers / default Linux version to 3.1.4.
|
||||
|
||||
Updated/fixed packages: ruby
|
||||
|
||||
2011.11-rc3, Released November 26th, 2011:
|
||||
|
||||
Fixes all over the tree.
|
||||
|
||||
2
Makefile
2
Makefile
@@ -24,7 +24,7 @@
|
||||
#--------------------------------------------------------------
|
||||
|
||||
# Set and export the version string
|
||||
export BR2_VERSION:=2011.11-rc3
|
||||
export BR2_VERSION:=2011.11
|
||||
|
||||
# This top-level Makefile can *not* be executed in parallel
|
||||
.NOTPARALLEL:
|
||||
|
||||
@@ -6,14 +6,14 @@
|
||||
|
||||
<p>
|
||||
|
||||
The latest stable release is <b>2011.08</b>, which can be downloaded
|
||||
The latest stable release is <b>2011.11</b>, which can be downloaded
|
||||
here:<p>
|
||||
|
||||
<a href="/downloads/buildroot-2011.08.tar.gz">buildroot-2011.08.tar.gz</a>
|
||||
<a href="/downloads/buildroot-2011.11.tar.gz">buildroot-2011.11.tar.gz</a>
|
||||
or
|
||||
<a href="/downloads/buildroot-2011.08.tar.bz2">buildroot-2011.08.tar.bz2</a>.
|
||||
<a href="/downloads/buildroot-2011.11.tar.bz2">buildroot-2011.11.tar.bz2</a>.
|
||||
<p>
|
||||
|
||||
<!--
|
||||
The latest release candidate is <b>2011.11-rc3</b>, which can be
|
||||
downloaded here:<p>
|
||||
|
||||
@@ -21,7 +21,7 @@ downloaded here:<p>
|
||||
or
|
||||
<a href="/downloads/buildroot-2011.11-rc3.tar.bz2">buildroot-2011.11-rc3.tar.bz2</a>.
|
||||
<p>
|
||||
|
||||
-->
|
||||
This and earlier releases can always be downloaded from
|
||||
<a href="/downloads/">http://buildroot.net/downloads/</a>.
|
||||
|
||||
|
||||
@@ -5,6 +5,14 @@
|
||||
<p>
|
||||
|
||||
<ul>
|
||||
<li><b>30 November 2011 -- 2011.11 released</b>
|
||||
|
||||
<p>The stable 2011.11 release is out - Thanks to everyone
|
||||
contributing and testing the release candidates. See the
|
||||
<a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11">CHANGES</a>
|
||||
file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2011.11.tar.bz2">2011.11 release</a>.</p>
|
||||
|
||||
<li><b>26 November 2011 -- 2011.11-rc3 released</b>
|
||||
|
||||
<p>RC3 is out with more bugfixes - See the <a
|
||||
|
||||
@@ -22,7 +22,7 @@ choice
|
||||
default BR2_LINUX_KERNEL_3_1
|
||||
|
||||
config BR2_LINUX_KERNEL_3_1
|
||||
bool "3.1.2"
|
||||
bool "3.1.4"
|
||||
|
||||
config BR2_LINUX_KERNEL_SAME_AS_HEADERS
|
||||
bool "Same as toolchain kernel headers"
|
||||
@@ -58,7 +58,7 @@ endchoice
|
||||
config BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE
|
||||
string "Kernel version"
|
||||
depends on BR2_LINUX_KERNEL_CUSTOM_VERSION
|
||||
default "3.1.2"
|
||||
default "3.1.4"
|
||||
|
||||
config BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION
|
||||
string "URL of custom kernel tarball"
|
||||
@@ -74,7 +74,7 @@ config BR2_LINUX_KERNEL_CUSTOM_GIT_VERSION
|
||||
|
||||
config BR2_LINUX_KERNEL_VERSION
|
||||
string
|
||||
default "3.1.2" if BR2_LINUX_KERNEL_3_1
|
||||
default "3.1.4" if BR2_LINUX_KERNEL_3_1
|
||||
default BR2_DEFAULT_KERNEL_HEADERS if BR2_LINUX_KERNEL_SAME_AS_HEADERS
|
||||
default BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE if BR2_LINUX_KERNEL_CUSTOM_VERSION
|
||||
default "custom" if BR2_LINUX_KERNEL_CUSTOM_TARBALL
|
||||
|
||||
@@ -11,7 +11,7 @@ HOST_RUBY_AUTORECONF = YES
|
||||
RUBY_DEPENDENCIES = host-ruby
|
||||
RUBY_MAKE_ENV = $(TARGET_MAKE_ENV)
|
||||
RUBY_CONF_OPT = --disable-install-doc --disable-rpath
|
||||
HOST_RUBY_CONF_OPT = --disable-install-doc --without-ncurses --without-readline
|
||||
HOST_RUBY_CONF_OPT = --disable-install-doc --with-out-ext=curses,readline
|
||||
|
||||
# Force optionals to build before we do
|
||||
ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
|
||||
|
||||
@@ -57,7 +57,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
|
||||
default "2.6.37.6" if BR2_KERNEL_HEADERS_2_6_37
|
||||
default "2.6.38.8" if BR2_KERNEL_HEADERS_2_6_38
|
||||
default "2.6.39.4" if BR2_KERNEL_HEADERS_2_6_39
|
||||
default "3.0.10" if BR2_KERNEL_HEADERS_3_0
|
||||
default "3.1.2" if BR2_KERNEL_HEADERS_3_1
|
||||
default "3.0.12" if BR2_KERNEL_HEADERS_3_0
|
||||
default "3.1.4" if BR2_KERNEL_HEADERS_3_1
|
||||
default "2.6" if BR2_KERNEL_HEADERS_SNAP
|
||||
default $BR2_DEFAULT_KERNEL_VERSION if BR2_KERNEL_HEADERS_VERSION
|
||||
|
||||
Reference in New Issue
Block a user