The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / support / gnuconfig / README.buildroot
1 --- HOWTO ---
2 If your package uses config.guess and/or config.sub, then it probably
3 relies on the autotools as its build system. In this case, you should
4 use the autotools-package infrastructure, which will take care of updating
5 the config.guess and/or config.sub files appropriately. See the
6 Buildroot documentation for details about the autotools-package
7 infrastructure.
8
9 If for some reason your package does not use the autotools-package
10 infrastructure, you can request the config.guess and/or config.sub
11 files of your package to be updated by using:
12
13       $(call CONFIG_UPDATE,directory-of-your-package-sources)
14
15 --- UPDATE ---
16 GNU config is now managed in git, so to update:
17
18 # git clone git://git.savannah.gnu.org/config.git
19 # cp config/config.* .
20 # for p in $(ls patches/*.patch); do patch -p1 < $p; done
21 # rm -rf config
22
23 Currently no patches are needed, but they may be needed again in the
24 future.
25
26 The current Buildroot version is based on the Git commit
27 5e4de70bb0064d974a848fbe3a445d5dafaf7b48 of the config.git repository.