Config.in
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Native language support configuration
  3. #
  4. # smb wants NLS
  5. if [ "$CONFIG_SMB_FS" = "m" -o "$CONFIG_SMB_FS" = "y" ]; then
  6.   define_bool CONFIG_SMB_NLS y
  7. else
  8.   define_bool CONFIG_SMB_NLS n
  9. fi
  10. # msdos and Joliet want NLS
  11. if [ "$CONFIG_JOLIET" = "y" -o "$CONFIG_FAT_FS" != "n" 
  12. -o "$CONFIG_NTFS_FS" != "n" -o "$CONFIG_NCPFS_NLS" = "y" 
  13. -o "$CONFIG_SMB_NLS" = "y" ]; then
  14.   define_bool CONFIG_NLS y
  15. else
  16.   define_bool CONFIG_NLS n
  17. fi
  18. if [ "$CONFIG_NLS" = "y" ]; then
  19.   mainmenu_option next_comment
  20.   comment 'Native Language Support'
  21.   string 'Default NLS Option' CONFIG_NLS_DEFAULT "iso8859-1"
  22.   tristate 'Codepage 437 (United States, Canada)'  CONFIG_NLS_CODEPAGE_437
  23.   tristate 'Codepage 737 (Greek)'                  CONFIG_NLS_CODEPAGE_737
  24.   tristate 'Codepage 775 (Baltic Rim)'             CONFIG_NLS_CODEPAGE_775
  25.   tristate 'Codepage 850 (Europe)'                 CONFIG_NLS_CODEPAGE_850
  26.   tristate 'Codepage 852 (Central/Eastern Europe)' CONFIG_NLS_CODEPAGE_852
  27.   tristate 'Codepage 855 (Cyrillic)'               CONFIG_NLS_CODEPAGE_855
  28.   tristate 'Codepage 857 (Turkish)'                CONFIG_NLS_CODEPAGE_857
  29.   tristate 'Codepage 860 (Portuguese)'             CONFIG_NLS_CODEPAGE_860
  30.   tristate 'Codepage 861 (Icelandic)'              CONFIG_NLS_CODEPAGE_861
  31.   tristate 'Codepage 862 (Hebrew)'                 CONFIG_NLS_CODEPAGE_862
  32.   tristate 'Codepage 863 (Canadian French)'        CONFIG_NLS_CODEPAGE_863
  33.   tristate 'Codepage 864 (Arabic)'                 CONFIG_NLS_CODEPAGE_864
  34.   tristate 'Codepage 865 (Norwegian, Danish)'      CONFIG_NLS_CODEPAGE_865
  35.   tristate 'Codepage 866 (Cyrillic/Russian)'       CONFIG_NLS_CODEPAGE_866
  36.   tristate 'Codepage 869 (Greek)'                  CONFIG_NLS_CODEPAGE_869
  37.   tristate 'Simplified Chinese charset (CP936, GB2312)' CONFIG_NLS_CODEPAGE_936
  38.   tristate 'Traditional Chinese charset (Big5)'    CONFIG_NLS_CODEPAGE_950
  39.   tristate 'Japanese charsets (Shift-JIS, EUC-JP)' CONFIG_NLS_CODEPAGE_932
  40.   tristate 'Korean charset (CP949, EUC-KR)'        CONFIG_NLS_CODEPAGE_949
  41.   tristate 'Thai charset (CP874, TIS-620)'         CONFIG_NLS_CODEPAGE_874
  42.   tristate 'Hebrew charsets (ISO-8859-8, CP1255)'  CONFIG_NLS_ISO8859_8
  43.   tristate 'Windows CP1250 (Slavic/Central European Languages)' CONFIG_NLS_CODEPAGE_1250
  44.   tristate 'Windows CP1251 (Bulgarian, Belarusian)' CONFIG_NLS_CODEPAGE_1251
  45.   tristate 'NLS ISO 8859-1  (Latin 1; Western European Languages)' CONFIG_NLS_ISO8859_1
  46.   tristate 'NLS ISO 8859-2  (Latin 2; Slavic/Central European Languages)' CONFIG_NLS_ISO8859_2
  47.   tristate 'NLS ISO 8859-3  (Latin 3; Esperanto, Galician, Maltese, Turkish)' CONFIG_NLS_ISO8859_3
  48.   tristate 'NLS ISO 8859-4  (Latin 4; old Baltic charset)' CONFIG_NLS_ISO8859_4
  49.   tristate 'NLS ISO 8859-5  (Cyrillic)'             CONFIG_NLS_ISO8859_5
  50.   tristate 'NLS ISO 8859-6  (Arabic)'               CONFIG_NLS_ISO8859_6
  51.   tristate 'NLS ISO 8859-7  (Modern Greek)'         CONFIG_NLS_ISO8859_7
  52.   tristate 'NLS ISO 8859-9  (Latin 5; Turkish)'     CONFIG_NLS_ISO8859_9
  53.   tristate 'NLS ISO 8859-13 (Latin 7; Baltic)'      CONFIG_NLS_ISO8859_13
  54.   tristate 'NLS ISO 8859-14 (Latin 8; Celtic)'      CONFIG_NLS_ISO8859_14
  55.   tristate 'NLS ISO 8859-15 (Latin 9; Western European Languages with Euro)' CONFIG_NLS_ISO8859_15
  56.   tristate 'NLS KOI8-R (Russian)'                   CONFIG_NLS_KOI8_R
  57.   tristate 'NLS KOI8-U/RU (Ukrainian, Belarusian)' CONFIG_NLS_KOI8_U
  58.   tristate 'NLS UTF8'                               CONFIG_NLS_UTF8
  59.   endmenu
  60. fi