kumquat-buildroot/package/config/patches/13-use-conf-write-autoconf.patch
Thomas Petazzoni 52a142a631 Bump package/config to 2.6.36-rc1
The goal is to be able to use savedefconfig to generate minimal
defconfig files.

Four of our patches are removed since the modifications have been
merged upstream. The new nconf configuration utility has appeared.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-09-01 12:26:49 +02:00

54 lines
1.3 KiB
Diff

---
conf.c | 4 ++++
mconf.c | 2 +-
qconf.cc | 2 ++
3 files changed, 7 insertions(+), 1 deletion(-)
Index: config.new/conf.c
===================================================================
--- config.new.orig/conf.c
+++ config.new/conf.c
@@ -641,6 +641,10 @@
fprintf(stderr, _("\n*** Error during writing of the Buildroot configuration.\n\n"));
exit(1);
}
+ if (conf_write_autoconf()) {
+ fprintf(stderr, _("\n*** Error during update of the Buildroot configuration.\n\n"));
+ return 1;
+ }
}
return 0;
}
Index: config.new/mconf.c
===================================================================
--- config.new.orig/mconf.c
+++ config.new/mconf.c
@@ -862,6 +862,6 @@
"\n\n"));
}
- return 0;
+ return conf_write_autoconf();
}
Index: config.new/qconf.cc
===================================================================
--- config.new.orig/qconf.cc
+++ config.new/qconf.cc
@@ -1612,6 +1612,7 @@
{
if (!conf_get_changed()) {
e->accept();
+ conf_write_autoconf();
return;
}
QMessageBox mb("qconf", _("Save configuration?"), QMessageBox::Warning,
@@ -1622,6 +1623,7 @@
switch (mb.exec()) {
case QMessageBox::Yes:
conf_write(NULL);
+ conf_write_autoconf();
case QMessageBox::No:
e->accept();
break;