diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-03-03 06:38:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-03-03 06:38:16 +0100 |
commit | 1b8b4b1839bb012877b8e98cc8932b4cf0349440 (patch) | |
tree | 997ad72134f2bf1dee6d638c3798a648f6d09734 /target/config/Config.in.endian.default | |
parent | 6ec63e7445fec93fba027a70083b16cd470e5a95 (diff) |
convert to upper case symbols, remove lower case ADK_big/ADK_little
Diffstat (limited to 'target/config/Config.in.endian.default')
-rw-r--r-- | target/config/Config.in.endian.default | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/target/config/Config.in.endian.default b/target/config/Config.in.endian.default index 6599016eb..2ed3be897 100644 --- a/target/config/Config.in.endian.default +++ b/target/config/Config.in.endian.default @@ -1,18 +1,12 @@ # This file is part of the OpenADK project. OpenADK is copyrighted # material, please see the LICENCE file in the top-level directory. -config ADK_big - boolean - -config ADK_little - boolean - config ADK_TARGET_ENDIAN string - default "little" if ADK_little - default "big" if ADK_big + default "little" if ADK_TARGET_LITTLE_ENDIAN + default "big" if ADK_TARGET_BIG_ENDIAN config ADK_JFFS2_OPTS string - default "-l" if ADK_little - default "-b" if ADK_big + default "-l" if ADK_TARGET_LITTLE_ENDIAN + default "-b" if ADK_TARGET_BIG_ENDIAN |