diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-19 01:42:49 -0600 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-12-19 01:49:30 -0600 |
commit | 949d8663f2f12c986ef2983b7b307f5ecddf060e (patch) | |
tree | 258f4f1f62c469b54e0f342fcf36847333c68bda /Makefile | |
parent | 7c89a2bc80d4d3c33a5345fd673cd2fe424c1fae (diff) |
use the new concept of appliances
- Sync with Kernel upstream Kconfig
- use new feature visible
- add a patch for select on choices
https://lkml.org/lkml/2011/2/17/379
- rename ADK_LINUX -> ADK_TARGET_ARCH
- remove package collection feature
- add appliance feature to define a appliance
more complete
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -85,7 +85,7 @@ config: .prereq_done @${GMAKE_INV} _config W= oldconfig: .prereq_done - @${GMAKE_INV} _config W=-o + @${GMAKE_INV} _config W=--oldconfig download: .prereq_done @${GMAKE_INV} toolchain/download @@ -132,13 +132,13 @@ defconfig: .prereq_done @${GMAKE_INV} defconfig allnoconfig: .prereq_done - @${GMAKE_INV} _config W=-n + @${GMAKE_INV} _config W=--allnoconfig allconfig: .prereq_done - @${GMAKE_INV} _mconfig W=-y RCONFIG=Config.in + @${GMAKE_INV} _mconfig W=--allyesconfig RCONFIG=Config.in allmodconfig: .prereq_done - @${GMAKE_INV} _mconfig W=-o RCONFIG=Config.in + @${GMAKE_INV} _mconfig W=--allmodconfig RCONFIG=Config.in package_index: .prereq_done @${GMAKE_INV} package_index |