Commit f5b8cd4a authored by Bernhard Reutner-Fischer's avatar Bernhard Reutner-Fischer
Browse files

- add a version and display it in the configuration

parent ba2f9cb1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -6,6 +6,10 @@ config BR2_HAVE_DOT_CONFIG
	bool
	default y

config BR2_VERSION
	string
	default "0.10.0-svn"

source "target/arch.in"

menu "Build options"
+2 −0
Original line number Diff line number Diff line
Buildroot3 TODOs

- stabilize for a 0.10.0 release

- fix packages/Makefile.autotools.in to use a package-imposed patchdir
- convert all packages that use autoconf to use the infrastructure of
  packages/Makefile.autotools.in
+2 −2
Original line number Diff line number Diff line
@@ -413,7 +413,7 @@ int conf_write(const char *name)
	if (!out)
		return 1;

	sym = sym_lookup("VERSION", 0);
	sym = sym_lookup("BR2_VERSION", 0);
	sym_calc_value(sym);
	time(&now);
	env = getenv("KCONFIG_NOTIMESTAMP");
@@ -681,7 +681,7 @@ int conf_write_autoconf(void)
		return 1;
	}

	sym = sym_lookup("VERSION", 0);
	sym = sym_lookup("BR2_VERSION", 0);
	sym_calc_value(sym);
	time(&now);
	fprintf(out, "#\n"
+1 −1
Original line number Diff line number Diff line
@@ -272,7 +272,7 @@ void init_main_window(const gchar * glade_file)
					  NULL);

	sprintf(title, _("Buildroot v%s Configuration"),
		getenv("VERSION"));
		getenv("BR2_VERSION"));
	gtk_window_set_title(GTK_WINDOW(main_wnd), title);

	gtk_widget_show(main_wnd);
+6 −545

File changed.

Preview size limit exceeded, changes collapsed.

Loading