summaryrefslogtreecommitdiff
path: root/.gitignore
AgeCommit message (Collapse)Author
2010-06-12auto-generate package/Config.inPhil Sutter
The algorithm in package/pkgmaker works as follows: 1) for all package/*/Makefile a) parse PKG_NAME and PKG_SECTION b) skip if PKG_SECTION is 'kernel' (special ones) c) check if Config.in{,.lib,.manual} contain something d) fetch the first word of the first prompt from any result from c) e) fetch the verbose section name from package/SECTIONS.list based on PKG_SECTION, or just 'libs' if it's about Config.in.lib f) write results to package/package_section_list, in the form: '<Config.in prompt> <path to Config.in file> <verbose section name>' 2) sort package/package_section_list first by <verbose section name>, next by <Config.in prompt> 3) create package/Config.in.auto using the result from 2)
2010-02-15add special handling for kernel modules in pkgmakerWaldemar Brodkorb
- use Config.in.kmod for packages with kernel modules - cleanup dots in uclibc Config.in - avoid autotool in cryptsetup, breaks build on debian lenny
2010-02-07change defaults for CONFIG/BUILD/INSTALL stylesWaldemar Brodkorb
All packages need an update, so here is a very huge commit. Most of the 460 source packages use automatic style for configuration, building and installing. Make these styles default to "auto". If you have a package, which does not conform to this, just use manual style and add a do-$task make target. I added a new style named AUTOTOOL style, which is needed for some broken packages, which needs to be updated via autoconf or automake. I renamed CONFIGURE_STYLE to CONFIG_STYLE. Updates for some packages, which have newer upstream versions. Renaming of all package/*/extra directories. Use the directory src/ to provide overwrites of source files or to add the code, when no upstream package is available or used. src directory will be automatically used.
2010-02-04finetune make bulkWaldemar Brodkorb
add bulk targets for allmodconfig/allconfig. add more targets to the bulk list. use a separate .cfg directory for target-libc combinations.
2010-01-30use target-libc combination for all builddirsWaldemar Brodkorb
IMPORTANT: do a make distclean before compiling after this commit. The directories for all build and bin directories changed, so that toolchains for different target-libc combinations can coexist. This might be usefule in the future for continous compiling after git commit, without rebuilding the toolchain. Rework busybox rebuild, when config changes. Not optimal, but at least working after this change to the directory structure.
2009-12-30fix some cygwin issuesWaldemar Brodkorb
2009-12-29fix cygwin compile issuesWaldemar Brodkorb
remove xmlto dependency, do not generate alsa manpages let aiccu cross-compile on != linux hosts
2009-12-24Merge commit 'origin/confgen'Waldemar Brodkorb
finally autogenerate menu Config.in files and Depends.mk for packages. thx mirabilos Conflicts: .gitignore Makefile mk/build.mk package/eglibc/Config.in package/glibc/Config.in package/uclibc++/Config.in package/uclibc/Config.in rules.mk
2009-12-23remove and ignore autogenerated Config.in filesWaldemar Brodkorb
2009-12-21add a more realistic bulk targetWaldemar Brodkorb
thx to mirabilos
2009-12-20simplify base-files package and default onWaldemar Brodkorb
no extra PKG_ID is needed anymore, we do not use filesystem or target specific startup scripts. Ignore .menu.
2009-11-20package updates and compile fixesWaldemar Brodkorb
- update ctorrent, cups, gnutls and freeradius-server - compile kerberos (heimdal,krb5) with com_err library from e2fsprogs to allow both to be build without installing local copys of libcom_err - cleanup lynx package add zlib dependency
2009-11-13new feature extra dirWaldemar Brodkorb
- you can now overwrite your target root dir files with either - creating a directory extra/ and put a complet file hierarchy into it - creating a directory anywhere and using make extra=/path/to/dir both methods will copy the file hierarchy over root dir and then will create images and tar balls. useful for overwriten default configuration or adding non packaged software like java runtime environment. suggested by Joerg S.
2009-08-09Merge branch 'master' of git+ssh://openadk.org/git/openadkWaldemar Brodkorb
2009-08-09ignore .cfg*Waldemar Brodkorb
2009-08-02make new mconf compile and update .gitignorePhil Sutter
2009-06-04add experimental linksys wag54h ar7 supportWaldemar Brodkorb
- network interface does not work, but system can boot
2009-05-24gcc 4.4 compatibility patchesWaldemar Brodkorb
* add the rest of the patches missed by the last commit
2009-05-23add a suitable ignorefileWaldemar Brodkorb