summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/pcmcia/tcic.h
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-01-24 23:33:40 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-01-24 23:33:40 +0000
commit3a0c5648e3c0a691e285a4ae1003cb6e06a19df1 (patch)
treef30320b72d576dfcdab1e48da2e44a910185ac87 /mdk-stage1/pcmcia/tcic.h
parente723e8a329c96201c01e5f8b7621e462042bb9e3 (diff)
downloaddrakx-3a0c5648e3c0a691e285a4ae1003cb6e06a19df1.tar
drakx-3a0c5648e3c0a691e285a4ae1003cb6e06a19df1.tar.gz
drakx-3a0c5648e3c0a691e285a4ae1003cb6e06a19df1.tar.bz2
drakx-3a0c5648e3c0a691e285a4ae1003cb6e06a19df1.tar.xz
drakx-3a0c5648e3c0a691e285a4ae1003cb6e06a19df1.zip
stage1: add pcmcia
Diffstat (limited to 'mdk-stage1/pcmcia/tcic.h')
-rw-r--r--mdk-stage1/pcmcia/tcic.h266
1 files changed, 266 insertions, 0 deletions
diff --git a/mdk-stage1/pcmcia/tcic.h b/mdk-stage1/pcmcia/tcic.h
new file mode 100644
index 000000000..92347cef6
--- /dev/null
+++ b/mdk-stage1/pcmcia/tcic.h
@@ -0,0 +1,266 @@
+/*
+ * tcic.h 1.14 2000/06/12 21:29:37
+ *
+ * The contents of this file are subject to the Mozilla Public License
+ * Version 1.1 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License
+ * at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS"
+ * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
+ * the License for the specific language governing rights and
+ * limitations under the License.
+ *
+ * The initial developer of the original code is David A. Hinds
+ * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
+ * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
+ *
+ * Alternatively, the contents of this file may be used under the
+ * terms of the GNU Public License version 2 (the "GPL"), in which
+ * case the provisions of the GPL are applicable instead of the
+ * above. If you wish to allow the use of your version of this file
+ * only under the terms of the GPL and not to allow others to use
+ * your version of this file under the MPL, indicate your decision by
+ * deleting the provisions above and replace them with the notice and
+ * other provisions required by the GPL. If you do not delete the
+ * provisions above, a recipient may use your version of this file
+ * under either the MPL or the GPL.
+ */
+
+#ifndef _LINUX_TCIC_H
+#define _LINUX_TCIC_H
+
+#define TCIC_BASE 0x240
+
+/* offsets of registers from TCIC_BASE */
+#define TCIC_DATA 0x00
+#define TCIC_ADDR 0x02
+#define TCIC_SCTRL 0x06
+#define TCIC_SSTAT 0x07
+#define TCIC_MODE 0x08
+#define TCIC_PWR 0x09
+#define TCIC_EDC 0x0A
+#define TCIC_ICSR 0x0C
+#define TCIC_IENA 0x0D
+#define TCIC_AUX 0x0E
+
+#define TCIC_SS_SHFT 12
+#define TCIC_SS_MASK 0x7000
+
+/* Flags for TCIC_ADDR */
+#define TCIC_ADR2_REG 0x8000
+#define TCIC_ADR2_INDREG 0x0800
+
+#define TCIC_ADDR_REG 0x80000000
+#define TCIC_ADDR_SS_SHFT (TCIC_SS_SHFT+16)
+#define TCIC_ADDR_SS_MASK (TCIC_SS_MASK<<16)
+#define TCIC_ADDR_INDREG 0x08000000
+#define TCIC_ADDR_IO 0x04000000
+#define TCIC_ADDR_MASK 0x03ffffff
+
+/* Flags for TCIC_SCTRL */
+#define TCIC_SCTRL_ENA 0x01
+#define TCIC_SCTRL_INCMODE 0x18
+#define TCIC_SCTRL_INCMODE_HOLD 0x00
+#define TCIC_SCTRL_INCMODE_WORD 0x08
+#define TCIC_SCTRL_INCMODE_REG 0x10
+#define TCIC_SCTRL_INCMODE_AUTO 0x18
+#define TCIC_SCTRL_EDCSUM 0x20
+#define TCIC_SCTRL_RESET 0x80
+
+/* Flags for TCIC_SSTAT */
+#define TCIC_SSTAT_6US 0x01
+#define TCIC_SSTAT_10US 0x02
+#define TCIC_SSTAT_PROGTIME 0x04
+#define TCIC_SSTAT_LBAT1 0x08
+#define TCIC_SSTAT_LBAT2 0x10
+#define TCIC_SSTAT_RDY 0x20 /* Inverted */
+#define TCIC_SSTAT_WP 0x40
+#define TCIC_SSTAT_CD 0x80 /* Card detect */
+
+/* Flags for TCIC_MODE */
+#define TCIC_MODE_PGMMASK 0x1f
+#define TCIC_MODE_NORMAL 0x00
+#define TCIC_MODE_PGMWR 0x01
+#define TCIC_MODE_PGMRD 0x02
+#define TCIC_MODE_PGMCE 0x04
+#define TCIC_MODE_PGMDBW 0x08
+#define TCIC_MODE_PGMWORD 0x10
+#define TCIC_MODE_AUXSEL_MASK 0xe0
+
+/* Registers accessed through TCIC_AUX, by setting TCIC_MODE */
+#define TCIC_AUX_TCTL (0<<5)
+#define TCIC_AUX_PCTL (1<<5)
+#define TCIC_AUX_WCTL (2<<5)
+#define TCIC_AUX_EXTERN (3<<5)
+#define TCIC_AUX_PDATA (4<<5)
+#define TCIC_AUX_SYSCFG (5<<5)
+#define TCIC_AUX_ILOCK (6<<5)
+#define TCIC_AUX_TEST (7<<5)
+
+/* Flags for TCIC_PWR */
+#define TCIC_PWR_VCC(sock) (0x01<<(sock))
+#define TCIC_PWR_VCC_MASK 0x03
+#define TCIC_PWR_VPP(sock) (0x08<<(sock))
+#define TCIC_PWR_VPP_MASK 0x18
+#define TCIC_PWR_CLIMENA 0x40
+#define TCIC_PWR_CLIMSTAT 0x80
+
+/* Flags for TCIC_ICSR */
+#define TCIC_ICSR_CLEAR 0x01
+#define TCIC_ICSR_SET 0x02
+#define TCIC_ICSR_JAM (TCIC_ICSR_CLEAR|TCIC_ICSR_SET)
+#define TCIC_ICSR_STOPCPU 0x04
+#define TCIC_ICSR_ILOCK 0x08
+#define TCIC_ICSR_PROGTIME 0x10
+#define TCIC_ICSR_ERR 0x20
+#define TCIC_ICSR_CDCHG 0x40
+#define TCIC_ICSR_IOCHK 0x80
+
+/* Flags for TCIC_IENA */
+#define TCIC_IENA_CFG_MASK 0x03
+#define TCIC_IENA_CFG_OFF 0x00 /* disabled */
+#define TCIC_IENA_CFG_OD 0x01 /* active low, open drain */
+#define TCIC_IENA_CFG_LOW 0x02 /* active low, totem pole */
+#define TCIC_IENA_CFG_HIGH 0x03 /* active high, totem pole */
+#define TCIC_IENA_ILOCK 0x08
+#define TCIC_IENA_PROGTIME 0x10
+#define TCIC_IENA_ERR 0x20 /* overcurrent or iochk */
+#define TCIC_IENA_CDCHG 0x40
+
+/* Flags for TCIC_AUX_WCTL */
+#define TCIC_WAIT_COUNT_MASK 0x001f
+#define TCIC_WAIT_ASYNC 0x0020
+#define TCIC_WAIT_SENSE 0x0040
+#define TCIC_WAIT_SRC 0x0080
+#define TCIC_WCTL_WR 0x0100
+#define TCIC_WCTL_RD 0x0200
+#define TCIC_WCTL_CE 0x0400
+#define TCIC_WCTL_LLBAT1 0x0800
+#define TCIC_WCTL_LLBAT2 0x1000
+#define TCIC_WCTL_LRDY 0x2000
+#define TCIC_WCTL_LWP 0x4000
+#define TCIC_WCTL_LCD 0x8000
+
+/* Flags for TCIC_AUX_SYSCFG */
+#define TCIC_SYSCFG_IRQ_MASK 0x000f
+#define TCIC_SYSCFG_MCSFULL 0x0010
+#define TCIC_SYSCFG_IO1723 0x0020
+#define TCIC_SYSCFG_MCSXB 0x0040
+#define TCIC_SYSCFG_ICSXB 0x0080
+#define TCIC_SYSCFG_NOPDN 0x0100
+#define TCIC_SYSCFG_MPSEL_SHFT 9
+#define TCIC_SYSCFG_MPSEL_MASK 0x0e00
+#define TCIC_SYSCFG_MPSENSE 0x2000
+#define TCIC_SYSCFG_AUTOBUSY 0x4000
+#define TCIC_SYSCFG_ACC 0x8000
+
+#define TCIC_ILOCK_OUT 0x01
+#define TCIC_ILOCK_SENSE 0x02
+#define TCIC_ILOCK_CRESET 0x04
+#define TCIC_ILOCK_CRESENA 0x08
+#define TCIC_ILOCK_CWAIT 0x10
+#define TCIC_ILOCK_CWAITSNS 0x20
+#define TCIC_ILOCK_HOLD_MASK 0xc0
+#define TCIC_ILOCK_HOLD_CCLK 0xc0
+
+#define TCIC_ILOCKTEST_ID_SH 8
+#define TCIC_ILOCKTEST_ID_MASK 0x7f00
+#define TCIC_ILOCKTEST_MCIC_1 0x8000
+
+#define TCIC_ID_DB86082 0x02
+#define TCIC_ID_DB86082A 0x03
+#define TCIC_ID_DB86084 0x04
+#define TCIC_ID_DB86084A 0x08
+#define TCIC_ID_DB86072 0x15
+#define TCIC_ID_DB86184 0x14
+#define TCIC_ID_DB86082B 0x17
+
+#define TCIC_TEST_DIAG 0x8000
+
+/*
+ * Indirectly addressed registers
+ */
+
+#define TCIC_SCF1(sock) ((sock)<<3)
+#define TCIC_SCF2(sock) (((sock)<<3)+2)
+
+/* Flags for SCF1 */
+#define TCIC_SCF1_IRQ_MASK 0x000f
+#define TCIC_SCF1_IRQ_OFF 0x0000
+#define TCIC_SCF1_IRQOC 0x0010
+#define TCIC_SCF1_PCVT 0x0020
+#define TCIC_SCF1_IRDY 0x0040
+#define TCIC_SCF1_ATA 0x0080
+#define TCIC_SCF1_DMA_SHIFT 8
+#define TCIC_SCF1_DMA_MASK 0x0700
+#define TCIC_SCF1_DMA_OFF 0
+#define TCIC_SCF1_DREQ2 2
+#define TCIC_SCF1_IOSTS 0x0800
+#define TCIC_SCF1_SPKR 0x1000
+#define TCIC_SCF1_FINPACK 0x2000
+#define TCIC_SCF1_DELWR 0x4000
+#define TCIC_SCF1_HD7IDE 0x8000
+
+/* Flags for SCF2 */
+#define TCIC_SCF2_RI 0x0001
+#define TCIC_SCF2_IDBR 0x0002
+#define TCIC_SCF2_MDBR 0x0004
+#define TCIC_SCF2_MLBAT1 0x0008
+#define TCIC_SCF2_MLBAT2 0x0010
+#define TCIC_SCF2_MRDY 0x0020
+#define TCIC_SCF2_MWP 0x0040
+#define TCIC_SCF2_MCD 0x0080
+#define TCIC_SCF2_MALL 0x00f8
+
+/* Indirect addresses for memory window registers */
+#define TCIC_MWIN(sock,map) (0x100+(((map)+((sock)<<2))<<3))
+#define TCIC_MBASE_X 2
+#define TCIC_MMAP_X 4
+#define TCIC_MCTL_X 6
+
+#define TCIC_MBASE_4K_BIT 0x4000
+#define TCIC_MBASE_HA_SHFT 12
+#define TCIC_MBASE_HA_MASK 0x0fff
+
+#define TCIC_MMAP_REG 0x8000
+#define TCIC_MMAP_CA_SHFT 12
+#define TCIC_MMAP_CA_MASK 0x3fff
+
+#define TCIC_MCTL_WSCNT_MASK 0x001f
+#define TCIC_MCTL_WCLK 0x0020
+#define TCIC_MCTL_WCLK_CCLK 0x0000
+#define TCIC_MCTL_WCLK_BCLK 0x0020
+#define TCIC_MCTL_QUIET 0x0040
+#define TCIC_MCTL_WP 0x0080
+#define TCIC_MCTL_ACC 0x0100
+#define TCIC_MCTL_KE 0x0200
+#define TCIC_MCTL_EDC 0x0400
+#define TCIC_MCTL_B8 0x0800
+#define TCIC_MCTL_SS_SHFT TCIC_SS_SHFT
+#define TCIC_MCTL_SS_MASK TCIC_SS_MASK
+#define TCIC_MCTL_ENA 0x8000
+
+/* Indirect addresses for I/O window registers */
+#define TCIC_IWIN(sock,map) (0x200+(((map)+((sock)<<1))<<2))
+#define TCIC_IBASE_X 0
+#define TCIC_ICTL_X 2
+
+#define TCIC_ICTL_WSCNT_MASK TCIC_MCTL_WSCNT_MASK
+#define TCIC_ICTL_QUIET TCIC_MCTL_QUIET
+#define TCIC_ICTL_1K 0x0080
+#define TCIC_ICTL_PASS16 0x0100
+#define TCIC_ICTL_ACC TCIC_MCTL_ACC
+#define TCIC_ICTL_TINY 0x0200
+#define TCIC_ICTL_B16 0x0400
+#define TCIC_ICTL_B8 TCIC_MCTL_B8
+#define TCIC_ICTL_BW_MASK (TCIC_ICTL_B16|TCIC_ICTL_B8)
+#define TCIC_ICTL_BW_DYN 0
+#define TCIC_ICTL_BW_8 TCIC_ICTL_B8
+#define TCIC_ICTL_BW_16 TCIC_ICTL_B16
+#define TCIC_ICTL_BW_ATA (TCIC_ICTL_B16|TCIC_ICTL_B8)
+#define TCIC_ICTL_SS_SHFT TCIC_SS_SHFT
+#define TCIC_ICTL_SS_MASK TCIC_SS_MASK
+#define TCIC_ICTL_ENA TCIC_MCTL_ENA
+
+#endif /* _LINUX_TCIC_H */
Graphic memory: %s kB\n"
msgstr "Вiдэапамяць: %s Кб\n"
-#: ../../Xconfigurator.pm_.c:1308
+#: ../../Xconfigurator.pm_.c:1339
#, c-format
msgid "Color depth: %s\n"
msgstr "Параметры глыбiнi колеру: %s\n"
-#: ../../Xconfigurator.pm_.c:1309
+#: ../../Xconfigurator.pm_.c:1340
#, c-format
msgid "Resolution: %s\n"
msgstr "Памеры экрану: %s\n"
-#: ../../Xconfigurator.pm_.c:1311
+#: ../../Xconfigurator.pm_.c:1342
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Сервер XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1312
+#: ../../Xconfigurator.pm_.c:1343
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Сервер XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1331
+#: ../../Xconfigurator.pm_.c:1362
msgid "Preparing X-Window configuration"
msgstr "Падрыхтоўка настройкi X-Window"
-#: ../../Xconfigurator.pm_.c:1351
+#: ../../Xconfigurator.pm_.c:1382
msgid "What do you want to do?"
msgstr "Што вы жадаеце зрабiць?"
-#: ../../Xconfigurator.pm_.c:1356
+#: ../../Xconfigurator.pm_.c:1387
msgid "Change Monitor"
msgstr "Змянiць манiтор"
-#: ../../Xconfigurator.pm_.c:1357
+#: ../../Xconfigurator.pm_.c:1388
msgid "Change Graphic card"
msgstr "Змянiць вiдэакарту"
-#: ../../Xconfigurator.pm_.c:1359
+#: ../../Xconfigurator.pm_.c:1390
msgid "Change Server options"
msgstr "Змянiць настройкi Серверу"
-#: ../../Xconfigurator.pm_.c:1360
+#: ../../Xconfigurator.pm_.c:1391
msgid "Change Resolution"
msgstr "Змянiць памеры экрану"
-#: ../../Xconfigurator.pm_.c:1361
+#: ../../Xconfigurator.pm_.c:1392
msgid "Show information"
msgstr "Iнфармацыя"
-#: ../../Xconfigurator.pm_.c:1362
+#: ../../Xconfigurator.pm_.c:1393
msgid "Test again"
msgstr "Праверыць яшчэ раз"
-#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
+#: ../../Xconfigurator.pm_.c:1394 ../../bootlook.pm_.c:238
msgid "Quit"
msgstr "Выхад"
-#: ../../Xconfigurator.pm_.c:1371
+#: ../../Xconfigurator.pm_.c:1402
#, c-format
msgid ""
"Keep the changes?\n"
@@ -354,20 +355,20 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfigurator.pm_.c:1392
+#: ../../Xconfigurator.pm_.c:1423
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
-#: ../../Xconfigurator.pm_.c:1412
+#: ../../Xconfigurator.pm_.c:1443
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1415
+#: ../../Xconfigurator.pm_.c:1446
msgid "X at startup"
msgstr "Запуск X пры старце сiстэмы"
-#: ../../Xconfigurator.pm_.c:1416
+#: ../../Xconfigurator.pm_.c:1447
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -475,7 +476,7 @@ msgstr "Манiтор, якi здольны падтрымлiваць 1600x1200 пры 76 Hz"
msgid "First sector of boot partition"
msgstr "Першы сектар загрузачнага раздзелу"
-#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:197
msgid "First sector of drive (MBR)"
msgstr "Першы сектар прылады (MBR)"
@@ -515,11 +516,11 @@ msgstr ""
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:148 ../../any.pm_.c:179
+#: ../../any.pm_.c:148 ../../any.pm_.c:180
msgid "Bootloader main options"
msgstr "Галоўныя опцыi пачатковага загрузчыку"
-#: ../../any.pm_.c:149 ../../any.pm_.c:180
+#: ../../any.pm_.c:149 ../../any.pm_.c:181
#, fuzzy
msgid "Bootloader to use"
msgstr "Галоўныя опцыi пачатковага загрузчыку"
@@ -528,7 +529,7 @@ msgstr "Галоўныя опцыi пачатковага загрузчыку"
msgid "Bootloader installation"
msgstr "Усталяванне загрузчыку"
-#: ../../any.pm_.c:153 ../../any.pm_.c:182
+#: ../../any.pm_.c:153 ../../any.pm_.c:183
msgid "Boot device"
msgstr "Загрузачная прылада"
@@ -544,7 +545,7 @@ msgstr "Кампактна"
msgid "compact"
msgstr "кампактна"
-#: ../../any.pm_.c:156 ../../any.pm_.c:255
+#: ../../any.pm_.c:156 ../../any.pm_.c:256
msgid "Video mode"
msgstr "Вiдэа-рэжым"
@@ -552,14 +553,14 @@ msgstr "Вiдэа-рэжым"
msgid "Delay before booting default image"
msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
-#: ../../any.pm_.c:160 ../../any.pm_.c:737
-#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../any.pm_.c:160 ../../any.pm_.c:741
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:629
#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
-#: ../../standalone/draknet_.c:567
+#: ../../standalone/draknet_.c:569
msgid "Password"
msgstr "Пароль"
-#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../any.pm_.c:161 ../../any.pm_.c:742
#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Паўтарыце пароль"
@@ -595,42 +596,42 @@ msgid ""
msgstr ""
"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
-#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../any.pm_.c:174 ../../any.pm_.c:718
#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Паспрабуйце яшчэ раз"
-#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../any.pm_.c:174 ../../any.pm_.c:718
#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Паролi не супадаюць"
-#: ../../any.pm_.c:181
+#: ../../any.pm_.c:182
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:184
+#: ../../any.pm_.c:185
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:186
+#: ../../any.pm_.c:187
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:187
+#: ../../any.pm_.c:188
#, fuzzy
msgid "Default OS?"
msgstr "Па дамаўленню"
-#: ../../any.pm_.c:209
+#: ../../any.pm_.c:210
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -638,148 +639,148 @@ msgstr ""
"У меню маюцца наступныя пункты.\n"
"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
-#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
+#: ../../any.pm_.c:220 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Дадаць"
-#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../any.pm_.c:220 ../../any.pm_.c:729 ../../diskdrake.pm_.c:46
#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Зроблена"
-#: ../../any.pm_.c:219
+#: ../../any.pm_.c:220
#, fuzzy
msgid "Modify"
msgstr "Змянiць RAID"
-#: ../../any.pm_.c:227
+#: ../../any.pm_.c:228
msgid "Which type of entry do you want to add?"
msgstr "Якi тып пункта жадаеце дадаць?"
-#: ../../any.pm_.c:228
+#: ../../any.pm_.c:229
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:228
+#: ../../any.pm_.c:229
msgid "Other OS (SunOS...)"
msgstr "Iншая АС (SunOS,...)"
-#: ../../any.pm_.c:229
+#: ../../any.pm_.c:230
msgid "Other OS (MacOS...)"
msgstr "Iншая АС (MacOS,...)"
-#: ../../any.pm_.c:229
+#: ../../any.pm_.c:230
msgid "Other OS (windows...)"
msgstr "Iншая АС (windows...)"
-#: ../../any.pm_.c:249 ../../any.pm_.c:251
+#: ../../any.pm_.c:250 ../../any.pm_.c:252
msgid "Image"
msgstr "Вобраз"
-#: ../../any.pm_.c:252 ../../any.pm_.c:263
+#: ../../any.pm_.c:253 ../../any.pm_.c:264
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:253 ../../any.pm_.c:282
+#: ../../any.pm_.c:254 ../../any.pm_.c:283
msgid "Append"
msgstr "Далучыць"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:258
+#: ../../any.pm_.c:259
msgid "Read-write"
msgstr "Чытанне-запiс"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Table"
msgstr "Таблiца"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Unsafe"
msgstr "Ненадзейна"
-#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
+#: ../../any.pm_.c:274 ../../any.pm_.c:279 ../../any.pm_.c:282
msgid "Label"
msgstr "Метка"
-#: ../../any.pm_.c:275 ../../any.pm_.c:286
+#: ../../any.pm_.c:276 ../../any.pm_.c:287
msgid "Default"
msgstr "Па дамаўленню"
-#: ../../any.pm_.c:283
+#: ../../any.pm_.c:284
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:285
+#: ../../any.pm_.c:286
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Remove entry"
msgstr "Выдалiць запiс"
-#: ../../any.pm_.c:296
+#: ../../any.pm_.c:297
msgid "Empty label not allowed"
msgstr "Пустая метка не дазваляецца"
-#: ../../any.pm_.c:297
+#: ../../any.pm_.c:298
msgid "This label is already used"
msgstr "Гэтая метка ўжо выкарыстоўваецца"
-#: ../../any.pm_.c:316
+#: ../../any.pm_.c:317
#, fuzzy
msgid "What type of partitioning?"
msgstr "Якi тып друкаркi вы маеце?"
-#: ../../any.pm_.c:604
+#: ../../any.pm_.c:608
#, c-format
msgid "Found %s %s interfaces"
msgstr "Знойдзены %s %s iнтэрфейсы"
-#: ../../any.pm_.c:605
+#: ../../any.pm_.c:609
msgid "Do you have another one?"
msgstr "Цi ёсць у вас iншы?"
-#: ../../any.pm_.c:606
+#: ../../any.pm_.c:610
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Цi ёсць у вас %s iнтэрфейс?"
-#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../any.pm_.c:612 ../../interactive.pm_.c:104 ../../my_gtk.pm_.c:616
#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Не"
-#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../any.pm_.c:612 ../../interactive.pm_.c:104 ../../my_gtk.pm_.c:616
msgid "Yes"
msgstr "Так"
-#: ../../any.pm_.c:609
+#: ../../any.pm_.c:613
msgid "See hardware info"
msgstr "Гл. апiсанне абсталявання"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:644
+#: ../../any.pm_.c:648
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Усталяванне драйверу для %s карты %s"
-#: ../../any.pm_.c:645
+#: ../../any.pm_.c:649
#, c-format
msgid "(module %s)"
msgstr "(модуль %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:660
#, c-format
msgid "Which %s driver should I try?"
msgstr "Якi драйвер %s паспрабаваць?"
-#: ../../any.pm_.c:664
+#: ../../any.pm_.c:668
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -796,20 +797,20 @@ msgstr ""
"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
"да спынення камп'ютэру, але яно нiчога не сапсуе."
-#: ../../any.pm_.c:669
+#: ../../any.pm_.c:673
msgid "Autoprobe"
msgstr "Аўтапошук"
-#: ../../any.pm_.c:669
+#: ../../any.pm_.c:673
msgid "Specify options"
msgstr "Пазначце параметры"
-#: ../../any.pm_.c:673
+#: ../../any.pm_.c:677
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Вы не можаце задаць опцыi модулю %s."
-#: ../../any.pm_.c:679
+#: ../../any.pm_.c:683
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -820,11 +821,11 @@ msgstr ""
"Опцыi - у фармаце ``iмя=значэнне iмя2=значэнне2 ...''.\n"
"Напрыклад, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:682
+#: ../../any.pm_.c:686
msgid "Module options:"
msgstr "Опцыi модулю:"
-#: ../../any.pm_.c:693
+#: ../../any.pm_.c:697
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -833,35 +834,35 @@ msgstr ""
"Загрузка модулю %s не прайшла.\n"
"Жадаеце паспрабаваць з iншымi параметрамi?"
-#: ../../any.pm_.c:711
+#: ../../any.pm_.c:715
#, c-format
msgid "(already added %s)"
msgstr "(ужо дададзена %s)"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:719
msgid "This password is too simple"
msgstr "Гэты пароль занадта просты"
-#: ../../any.pm_.c:716
+#: ../../any.pm_.c:720
msgid "Please give a user name"
msgstr "Калi ласка, увядзiце iмя карыстальнiку"
-#: ../../any.pm_.c:717
+#: ../../any.pm_.c:721
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
"лiчбы, `-' i `_'"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:722
msgid "This user name is already added"
msgstr "Гэта iмя карыстальнiку ўжо дададзена"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:726
msgid "Add user"
msgstr "Дадаць карыстальнiка"
-#: ../../any.pm_.c:723
+#: ../../any.pm_.c:727
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +871,32 @@ msgstr ""
"Увядзiце iмя карыстальнiку\n"
"%s"
-#: ../../any.pm_.c:724
+#: ../../any.pm_.c:728
msgid "Accept user"
msgstr "Прыняць карыстальнiка"
-#: ../../any.pm_.c:735
+#: ../../any.pm_.c:739
msgid "Real name"
msgstr "Уласнае iмя"
-#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../any.pm_.c:740 ../../printerdrake.pm_.c:97
#: ../../printerdrake.pm_.c:131
msgid "User name"
msgstr "Iмя карыстальнiку:"
-#: ../../any.pm_.c:739
+#: ../../any.pm_.c:743
msgid "Shell"
msgstr "Абалонка:"
-#: ../../any.pm_.c:741
+#: ../../any.pm_.c:745
msgid "Icon"
msgstr "Пiктаграма"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:766
msgid "Autologin"
msgstr "Аўтаматычны ўваход у сiстэму"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:767
msgid ""
"I can set up your computer to automatically log on one user.\n"
"If you don't want to use this feature, click on the cancel button."
@@ -903,16 +904,16 @@ msgstr ""
"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:769
msgid "Choose the default user:"
msgstr "Абярыце асноўнага карыстальнiка:"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:770
msgid "Choose the window manager to run:"
msgstr "Абярыце мэнэджар вокнаў:"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:262
+#: ../../bootloader.pm_.c:262 ../../bootloader.pm_.c:608
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -923,38 +924,49 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:795
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:809
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
-#: ../../bootloader.pm_.c:796
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:812
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-#: ../../bootloader.pm_.c:797
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:815
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
-#: ../../bootloader.pm_.c:798
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:818
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
-#: ../../bootloader.pm_.c:799
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#. -PO: and keep them smaller than 79 chars long
+#: ../../bootloader.pm_.c:821
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:803
+#: ../../bootloader.pm_.c:825
msgid "not enough room in /boot"
msgstr "Не хапае дыскавай прасторы ў /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:895
+#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
+#: ../../bootloader.pm_.c:918
msgid "Desktop"
msgstr "Працоўны стол"
-#: ../../bootloader.pm_.c:895
+#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
+#: ../../bootloader.pm_.c:920
msgid "Start Menu"
msgstr "Стартавае меню"
@@ -1089,69 +1101,42 @@ msgstr ""
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../bootlook.pm_.c:228
+#, fuzzy
+msgid "Default Runlevel"
+msgstr "Па дамаўленню"
+
+#: ../../bootlook.pm_.c:236 ../../standalone/draknet_.c:88
#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
-#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
-#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
-#: ../../standalone/draknet_.c:609
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:396
+#: ../../standalone/draknet_.c:473 ../../standalone/draknet_.c:509
+#: ../../standalone/draknet_.c:617
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
-#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../bootlook.pm_.c:238 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:114 ../../interactive.pm_.c:269
#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
-#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:617
#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
-#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/draknet_.c:485 ../../standalone/draknet_.c:631
#: ../../standalone/tinyfirewall_.c:63
msgid "Cancel"
msgstr "Адмена"
-#: ../../bootlook.pm_.c:297
+#: ../../bootlook.pm_.c:315
msgid "can not open /etc/inittab for reading: $!"
msgstr ""
-#: ../../bootlook.pm_.c:351
+#: ../../bootlook.pm_.c:369
msgid "can not open /etc/sysconfig/autologin for reading: $!"
msgstr ""
-#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+#: ../../bootlook.pm_.c:435 ../../standalone/drakboot_.c:47
msgid "Installation of LILO failed. The following error occured:"
msgstr "Усталяванне LILO не атрымалася. Узнiкла наступная памылка:"
-#: ../../common.pm_.c:634
-msgid "GB"
-msgstr ""
-
-#: ../../common.pm_.c:634
-msgid "KB"
-msgstr ""
-
-#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
-#: ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-msgid "MB"
-msgstr "Мб"
-
-#: ../../common.pm_.c:642
-msgid "TB"
-msgstr ""
-
-#: ../../common.pm_.c:655
-#, c-format
-msgid "%d minutes"
-msgstr "%d хвiлiн"
-
-#: ../../common.pm_.c:657
-msgid "1 minute"
-msgstr "1 хвiлiна"
-
-#: ../../common.pm_.c:659
-#, c-format
-msgid "%d seconds"
-msgstr "%d секундаў"
-
#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Стварыць"
@@ -1689,6 +1674,11 @@ msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
msgid "Choose the new size"
msgstr "Выбар новых памераў"
+#: ../../diskdrake.pm_.c:660 ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "Мб"
+
#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Стварэнне новага раздзелу"
@@ -1800,20 +1790,21 @@ msgid "Reload"
msgstr "Перазагрузiць"
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
+#: ../../fs.pm_.c:113
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s памылка фарматавання %s"
-#: ../../fs.pm_.c:135
+#: ../../fs.pm_.c:143
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
-#: ../../fs.pm_.c:220
+#: ../../fs.pm_.c:230
msgid "mount failed: "
msgstr "памылка манцiравання: "
-#: ../../fs.pm_.c:232
+#: ../../fs.pm_.c:242
#, c-format
msgid "error unmounting %s: %s"
msgstr "памылка разманцiравання %s: %s"
@@ -1826,41 +1817,41 @@ msgstr ""
msgid "server"
msgstr "сервер"
-#: ../../fsedit.pm_.c:261
+#: ../../fsedit.pm_.c:262
msgid "Mount points must begin with a leading /"
msgstr "Пункт манцiравання павiнен пачынацца з /"
-#: ../../fsedit.pm_.c:264
+#: ../../fsedit.pm_.c:265
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
-#: ../../fsedit.pm_.c:272
+#: ../../fsedit.pm_.c:273
#, c-format
msgid "Circular mounts %s\n"
msgstr "Манцiраванне дыску %s\n"
-#: ../../fsedit.pm_.c:284
+#: ../../fsedit.pm_.c:285
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:285
+#: ../../fsedit.pm_.c:286
msgid "This directory should remain within the root filesystem"
msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
-#: ../../fsedit.pm_.c:286
+#: ../../fsedit.pm_.c:287
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""