summaryrefslogtreecommitdiffstats
path: root/mdk-stage1
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.com>2007-08-15 00:37:17 +0000
committerOlivier Blin <oblin@mandriva.com>2007-08-15 00:37:17 +0000
commit6775ed8a1bc69044f98bc18b4d1cc2c32a00858b (patch)
tree0a3d7f217c78060fcb77cd919dcea88289f3a9ce /mdk-stage1
parentcf0ad1e1cd14a2bd7fd177111c5acf324456f7cb (diff)
downloaddrakx-6775ed8a1bc69044f98bc18b4d1cc2c32a00858b.tar
drakx-6775ed8a1bc69044f98bc18b4d1cc2c32a00858b.tar.gz
drakx-6775ed8a1bc69044f98bc18b4d1cc2c32a00858b.tar.bz2
drakx-6775ed8a1bc69044f98bc18b4d1cc2c32a00858b.tar.xz
drakx-6775ed8a1bc69044f98bc18b4d1cc2c32a00858b.zip
1.11
Diffstat (limited to 'mdk-stage1')
-rw-r--r--mdk-stage1/Makefile2
-rw-r--r--mdk-stage1/NEWS4
2 files changed, 5 insertions, 1 deletions
diff --git a/mdk-stage1/Makefile b/mdk-stage1/Makefile
index 5052ef33b..bcf2c037c 100644
--- a/mdk-stage1/Makefile
+++ b/mdk-stage1/Makefile
@@ -15,7 +15,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-VERSION=1.10.1
+VERSION=1.11
PRODUCT=drakx-installer-binaries
#
diff --git a/mdk-stage1/NEWS b/mdk-stage1/NEWS
index 69d75915b..4e8e59b96 100644
--- a/mdk-stage1/NEWS
+++ b/mdk-stage1/NEWS
@@ -1,3 +1,7 @@
+1.11:
+- use ldetect/libmodprobe/libpci instead of custom pci/usb probe
+- rename rescue "GUI" as rescue "menu"
+
1.10.1:
- link init with dietlibc instead of minilibc on ix86/x86-64
- add missing includes for wireless
= strlen(text); if (newLength <= la->length) { memset(la->text, ' ', la->length); memcpy(la->text, text, newLength); } else { free(la->text); la->text = strdup(text); la->length = newLength; co->width = newLength; } labelDraw(co); } static void labelDraw(newtComponent co) { struct label * la = co->data; if (co->isMapped == -1) return; SLsmg_set_color(COLORSET_LABEL); newtGotorc(co->top, co->left); SLsmg_write_string(la->text); } static void labelDestroy(newtComponent co) { struct label * la = co->data; free(la->text); free(la); free(co); }