diff options
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> | 2010-10-31 17:35:10 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-03 23:26:45 +0100 |
commit | e5e8fae892036360f399ed034463716f31bfd59f (patch) | |
tree | 42e0fb498800bd8f793c3025ed28b9c4ee6ff7cd /package/config/patches/01-kconfig-kernel-to-buildroot.patch | |
parent | 2d239bbe2771aa9f8ec5e02241a93c63195489a7 (diff) |
Makefile: move version string from Config.in into Makefile
This re-instates writing the version string in .config headers, and no
longer provides it as a kconfig symbol in .config (it is now a variable
in the Makefile, and in the environment).
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/config/patches/01-kconfig-kernel-to-buildroot.patch')
-rw-r--r-- | package/config/patches/01-kconfig-kernel-to-buildroot.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/config/patches/01-kconfig-kernel-to-buildroot.patch b/package/config/patches/01-kconfig-kernel-to-buildroot.patch index f77a54ca9..9df22d491 100644 --- a/package/config/patches/01-kconfig-kernel-to-buildroot.patch +++ b/package/config/patches/01-kconfig-kernel-to-buildroot.patch @@ -69,18 +69,16 @@ Index: config/confdata.c sym_calc_value(sym); time(&now); env = getenv("KCONFIG_NOTIMESTAMP"); -@@ -588,10 +588,8 @@ +@@ -588,7 +588,7 @@ fprintf(out, _("#\n" "# Automatically generated make config: don't edit\n" - "# Linux kernel version: %s\n" ++ "# Buildroot version: %s\n" "%s%s" "#\n"), -- sym_get_string_value(sym), - use_timestamp ? "# " : "", - use_timestamp ? ctime(&now) : ""); - -@@ -802,25 +800,23 @@ + sym_get_string_value(sym), +@@ -802,25 +802,25 @@ return 1; } @@ -91,9 +89,11 @@ Index: config/confdata.c fprintf(out, "#\n" "# Automatically generated make config: don't edit\n" - "# Linux kernel version: %s\n" ++ "# Buildroot version: %s\n" "# %s" "#\n", - sym_get_string_value(sym), ctime(&now)); ++ sym_get_string_value(sym), + ctime(&now)); fprintf(tristate, "#\n" "# Automatically generated - do not edit\n" |