diff options
| -rw-r--r-- | Documentation/RCU/NMI-RCU.txt | 4 | ||||
| -rw-r--r-- | Documentation/blockdev/README.DAC960 | 2 | ||||
| -rw-r--r-- | Documentation/blockdev/ramdisk.txt | 8 | ||||
| -rw-r--r-- | Documentation/cpu-freq/cpu-drivers.txt | 2 | ||||
| -rw-r--r-- | Documentation/filesystems/nfs/nfsroot.txt | 2 | ||||
| -rw-r--r-- | Documentation/isdn/README.HiSax | 2 | ||||
| -rw-r--r-- | Documentation/kbuild/makefiles.txt | 38 | ||||
| -rw-r--r-- | Documentation/magic-number.txt | 2 | ||||
| -rw-r--r-- | Documentation/mca.txt | 4 | ||||
| -rw-r--r-- | Documentation/scheduler/sched-arch.txt | 2 | ||||
| -rw-r--r-- | Documentation/scsi/BusLogic.txt | 2 | ||||
| -rw-r--r-- | Documentation/serial/computone.txt | 2 | ||||
| -rw-r--r-- | Documentation/zh_CN/magic-number.txt | 2 |
13 files changed, 36 insertions, 36 deletions
diff --git a/Documentation/RCU/NMI-RCU.txt b/Documentation/RCU/NMI-RCU.txt index a8536cb88091..bf82851a0e57 100644 --- a/Documentation/RCU/NMI-RCU.txt +++ b/Documentation/RCU/NMI-RCU.txt | |||
| @@ -5,8 +5,8 @@ Although RCU is usually used to protect read-mostly data structures, | |||
| 5 | it is possible to use RCU to provide dynamic non-maskable interrupt | 5 | it is possible to use RCU to provide dynamic non-maskable interrupt |
| 6 | handlers, as well as dynamic irq handlers. This document describes | 6 | handlers, as well as dynamic irq handlers. This document describes |
| 7 | how to do this, drawing loosely from Zwane Mwaikambo's NMI-timer | 7 | how to do this, drawing loosely from Zwane Mwaikambo's NMI-timer |
| 8 | work in "arch/i386/oprofile/nmi_timer_int.c" and in | 8 | work in "arch/x86/oprofile/nmi_timer_int.c" and in |
| 9 | "arch/i386/kernel/traps.c". | 9 | "arch/x86/kernel/traps.c". |
| 10 | 10 | ||
| 11 | The relevant pieces of code are listed below, each followed by a | 11 | The relevant pieces of code are listed below, each followed by a |
| 12 | brief explanation. | 12 | brief explanation. |
diff --git a/Documentation/blockdev/README.DAC960 b/Documentation/blockdev/README.DAC960 index 0e8f618ab534..bd85fb9dc6e5 100644 --- a/Documentation/blockdev/README.DAC960 +++ b/Documentation/blockdev/README.DAC960 | |||
| @@ -214,7 +214,7 @@ replacing "/usr/src" with wherever you keep your Linux kernel source tree: | |||
| 214 | make config | 214 | make config |
| 215 | make bzImage (or zImage) | 215 | make bzImage (or zImage) |
| 216 | 216 | ||
| 217 | Then install "arch/i386/boot/bzImage" or "arch/i386/boot/zImage" as your | 217 | Then install "arch/x86/boot/bzImage" or "arch/x86/boot/zImage" as your |
| 218 | standard kernel, run lilo if appropriate, and reboot. | 218 | standard kernel, run lilo if appropriate, and reboot. |
| 219 | 219 | ||
| 220 | To create the necessary devices in /dev, the "make_rd" script included in | 220 | To create the necessary devices in /dev, the "make_rd" script included in |
diff --git a/Documentation/blockdev/ramdisk.txt b/Documentation/blockdev/ramdisk.txt index 6c820baa19a6..fa72e97dd669 100644 --- a/Documentation/blockdev/ramdisk.txt +++ b/Documentation/blockdev/ramdisk.txt | |||
| @@ -64,9 +64,9 @@ the RAM disk dynamically grows as data is being written into it, a size field | |||
| 64 | is not required. Bits 11 to 13 are not currently used and may as well be zero. | 64 | is not required. Bits 11 to 13 are not currently used and may as well be zero. |
| 65 | These numbers are no magical secrets, as seen below: | 65 | These numbers are no magical secrets, as seen below: |
| 66 | 66 | ||
| 67 | ./arch/i386/kernel/setup.c:#define RAMDISK_IMAGE_START_MASK 0x07FF | 67 | ./arch/x86/kernel/setup.c:#define RAMDISK_IMAGE_START_MASK 0x07FF |
| 68 | ./arch/i386/kernel/setup.c:#define RAMDISK_PROMPT_FLAG 0x8000 | 68 | ./arch/x86/kernel/setup.c:#define RAMDISK_PROMPT_FLAG 0x8000 |
| 69 | ./arch/i386/kernel/setup.c:#define RAMDISK_LOAD_FLAG 0x4000 | 69 | ./arch/x86/kernel/setup.c:#define RAMDISK_LOAD_FLAG 0x4000 |
| 70 | 70 | ||
| 71 | Consider a typical two floppy disk setup, where you will have the | 71 | Consider a typical two floppy disk setup, where you will have the |
| 72 | kernel on disk one, and have already put a RAM disk image onto disk #2. | 72 | kernel on disk one, and have already put a RAM disk image onto disk #2. |
| @@ -85,7 +85,7 @@ The command line equivalent is: "prompt_ramdisk=1" | |||
| 85 | Putting that together gives 2^15 + 2^14 + 0 = 49152 for an rdev word. | 85 | Putting that together gives 2^15 + 2^14 + 0 = 49152 for an rdev word. |
| 86 | So to create disk one of the set, you would do: | 86 | So to create disk one of the set, you would do: |
| 87 | 87 | ||
| 88 | /usr/src/linux# cat arch/i386/boot/zImage > /dev/fd0 | 88 | /usr/src/linux# cat arch/x86/boot/zImage > /dev/fd0 |
| 89 | /usr/src/linux# rdev /dev/fd0 /dev/fd0 | 89 | /usr/src/linux# rdev /dev/fd0 /dev/fd0 |
| 90 | /usr/src/linux# rdev -r /dev/fd0 49152 | 90 | /usr/src/linux# rdev -r /dev/fd0 49152 |
| 91 | 91 | ||
diff --git a/Documentation/cpu-freq/cpu-drivers.txt b/Documentation/cpu-freq/cpu-drivers.txt index 6c30e930c122..c436096351f8 100644 --- a/Documentation/cpu-freq/cpu-drivers.txt +++ b/Documentation/cpu-freq/cpu-drivers.txt | |||
| @@ -168,7 +168,7 @@ in-chipset dynamic frequency switching to policy->min, the upper limit | |||
| 168 | to policy->max, and -if supported- select a performance-oriented | 168 | to policy->max, and -if supported- select a performance-oriented |
| 169 | setting when policy->policy is CPUFREQ_POLICY_PERFORMANCE, and a | 169 | setting when policy->policy is CPUFREQ_POLICY_PERFORMANCE, and a |
| 170 | powersaving-oriented setting when CPUFREQ_POLICY_POWERSAVE. Also check | 170 | powersaving-oriented setting when CPUFREQ_POLICY_POWERSAVE. Also check |
| 171 | the reference implementation in arch/i386/kernel/cpu/cpufreq/longrun.c | 171 | the reference implementation in drivers/cpufreq/longrun.c |
| 172 | 172 | ||
| 173 | 173 | ||
| 174 | 174 | ||
diff --git a/Documentation/filesystems/nfs/nfsroot.txt b/Documentation/filesystems/nfs/nfsroot.txt index 90c71c6f0d00..ffdd9d866ad7 100644 --- a/Documentation/filesystems/nfs/nfsroot.txt +++ b/Documentation/filesystems/nfs/nfsroot.txt | |||
| @@ -226,7 +226,7 @@ They depend on various facilities being available: | |||
| 226 | cdrecord. | 226 | cdrecord. |
| 227 | 227 | ||
| 228 | e.g. | 228 | e.g. |
| 229 | cdrecord dev=ATAPI:1,0,0 arch/i386/boot/image.iso | 229 | cdrecord dev=ATAPI:1,0,0 arch/x86/boot/image.iso |
| 230 | 230 | ||
| 231 | For more information on isolinux, including how to create bootdisks | 231 | For more information on isolinux, including how to create bootdisks |
| 232 | for prebuilt kernels, see http://syslinux.zytor.com/ | 232 | for prebuilt kernels, see http://syslinux.zytor.com/ |
diff --git a/Documentation/isdn/README.HiSax b/Documentation/isdn/README.HiSax index 99e87a61897d..b1a573cf4472 100644 --- a/Documentation/isdn/README.HiSax +++ b/Documentation/isdn/README.HiSax | |||
| @@ -506,7 +506,7 @@ to e.g. the Internet: | |||
| 506 | <ISDN subsystem - ISDN support -- HiSax> | 506 | <ISDN subsystem - ISDN support -- HiSax> |
| 507 | make clean; make zImage; make modules; make modules_install | 507 | make clean; make zImage; make modules; make modules_install |
| 508 | 2. Install the new kernel | 508 | 2. Install the new kernel |
| 509 | cp /usr/src/linux/arch/i386/boot/zImage /etc/kernel/linux.isdn | 509 | cp /usr/src/linux/arch/x86/boot/zImage /etc/kernel/linux.isdn |
| 510 | vi /etc/lilo.conf | 510 | vi /etc/lilo.conf |
| 511 | <add new kernel in the bootable image section> | 511 | <add new kernel in the bootable image section> |
| 512 | lilo | 512 | lilo |
diff --git a/Documentation/kbuild/makefiles.txt b/Documentation/kbuild/makefiles.txt index 47435e56c5da..f47cdefb4d1e 100644 --- a/Documentation/kbuild/makefiles.txt +++ b/Documentation/kbuild/makefiles.txt | |||
| @@ -441,7 +441,7 @@ more details, with real examples. | |||
| 441 | specified if first option are not supported. | 441 | specified if first option are not supported. |
| 442 | 442 | ||
| 443 | Example: | 443 | Example: |
| 444 | #arch/i386/kernel/Makefile | 444 | #arch/x86/kernel/Makefile |
| 445 | vsyscall-flags += $(call cc-ldoption, -Wl$(comma)--hash-style=sysv) | 445 | vsyscall-flags += $(call cc-ldoption, -Wl$(comma)--hash-style=sysv) |
| 446 | 446 | ||
| 447 | In the above example, vsyscall-flags will be assigned the option | 447 | In the above example, vsyscall-flags will be assigned the option |
| @@ -460,7 +460,7 @@ more details, with real examples. | |||
| 460 | supported to use an optional second option. | 460 | supported to use an optional second option. |
| 461 | 461 | ||
| 462 | Example: | 462 | Example: |
| 463 | #arch/i386/Makefile | 463 | #arch/x86/Makefile |
| 464 | cflags-y += $(call cc-option,-march=pentium-mmx,-march=i586) | 464 | cflags-y += $(call cc-option,-march=pentium-mmx,-march=i586) |
| 465 | 465 | ||
| 466 | In the above example, cflags-y will be assigned the option | 466 | In the above example, cflags-y will be assigned the option |
| @@ -522,7 +522,7 @@ more details, with real examples. | |||
| 522 | even though the option was accepted by gcc. | 522 | even though the option was accepted by gcc. |
| 523 | 523 | ||
| 524 | Example: | 524 | Example: |
| 525 | #arch/i386/Makefile | 525 | #arch/x86/Makefile |
| 526 | cflags-y += $(shell \ | 526 | cflags-y += $(shell \ |
| 527 | if [ $(call cc-version) -ge 0300 ] ; then \ | 527 | if [ $(call cc-version) -ge 0300 ] ; then \ |
| 528 | echo "-mregparm=3"; fi ;) | 528 | echo "-mregparm=3"; fi ;) |
| @@ -802,7 +802,7 @@ but in the architecture makefiles where the kbuild infrastructure | |||
| 802 | is not sufficient this sometimes needs to be explicit. | 802 | is not sufficient this sometimes needs to be explicit. |
| 803 | 803 | ||
| 804 | Example: | 804 | Example: |
| 805 | #arch/i386/boot/Makefile | 805 | #arch/x86/boot/Makefile |
| 806 | subdir- := compressed/ | 806 | subdir- := compressed/ |
| 807 | 807 | ||
| 808 | The above assignment instructs kbuild to descend down in the | 808 | The above assignment instructs kbuild to descend down in the |
| @@ -812,12 +812,12 @@ To support the clean infrastructure in the Makefiles that builds the | |||
| 812 | final bootimage there is an optional target named archclean: | 812 | final bootimage there is an optional target named archclean: |
| 813 | 813 | ||
| 814 | Example: | 814 | Example: |
| 815 | #arch/i386/Makefile | 815 | #arch/x86/Makefile |
| 816 | archclean: | 816 | archclean: |
| 817 | $(Q)$(MAKE) $(clean)=arch/i386/boot | 817 | $(Q)$(MAKE) $(clean)=arch/x86/boot |
| 818 | 818 | ||
| 819 | When "make clean" is executed, make will descend down in arch/i386/boot, | 819 | When "make clean" is executed, make will descend down in arch/x86/boot, |
| 820 | and clean as usual. The Makefile located in arch/i386/boot/ may use | 820 | and clean as usual. The Makefile located in arch/x86/boot/ may use |
| 821 | the subdir- trick to descend further down. | 821 | the subdir- trick to descend further down. |
| 822 | 822 | ||
| 823 | Note 1: arch/$(ARCH)/Makefile cannot use "subdir-", because that file is | 823 | Note 1: arch/$(ARCH)/Makefile cannot use "subdir-", because that file is |
| @@ -882,7 +882,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 882 | LDFLAGS_vmlinux uses the LDFLAGS_$@ support. | 882 | LDFLAGS_vmlinux uses the LDFLAGS_$@ support. |
| 883 | 883 | ||
| 884 | Example: | 884 | Example: |
| 885 | #arch/i386/Makefile | 885 | #arch/x86/Makefile |
| 886 | LDFLAGS_vmlinux := -e stext | 886 | LDFLAGS_vmlinux := -e stext |
| 887 | 887 | ||
| 888 | OBJCOPYFLAGS objcopy flags | 888 | OBJCOPYFLAGS objcopy flags |
| @@ -920,14 +920,14 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 920 | Often, the KBUILD_CFLAGS variable depends on the configuration. | 920 | Often, the KBUILD_CFLAGS variable depends on the configuration. |
| 921 | 921 | ||
| 922 | Example: | 922 | Example: |
| 923 | #arch/i386/Makefile | 923 | #arch/x86/Makefile |
| 924 | cflags-$(CONFIG_M386) += -march=i386 | 924 | cflags-$(CONFIG_M386) += -march=i386 |
| 925 | KBUILD_CFLAGS += $(cflags-y) | 925 | KBUILD_CFLAGS += $(cflags-y) |
| 926 | 926 | ||
| 927 | Many arch Makefiles dynamically run the target C compiler to | 927 | Many arch Makefiles dynamically run the target C compiler to |
| 928 | probe supported options: | 928 | probe supported options: |
| 929 | 929 | ||
| 930 | #arch/i386/Makefile | 930 | #arch/x86/Makefile |
| 931 | 931 | ||
| 932 | ... | 932 | ... |
| 933 | cflags-$(CONFIG_MPENTIUMII) += $(call cc-option,\ | 933 | cflags-$(CONFIG_MPENTIUMII) += $(call cc-option,\ |
| @@ -1038,8 +1038,8 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1038 | into the arch/$(ARCH)/boot/Makefile. | 1038 | into the arch/$(ARCH)/boot/Makefile. |
| 1039 | 1039 | ||
| 1040 | Example: | 1040 | Example: |
| 1041 | #arch/i386/Makefile | 1041 | #arch/x86/Makefile |
| 1042 | boot := arch/i386/boot | 1042 | boot := arch/x86/boot |
| 1043 | bzImage: vmlinux | 1043 | bzImage: vmlinux |
| 1044 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 1044 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
| 1045 | 1045 | ||
| @@ -1051,7 +1051,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1051 | To support this, $(archhelp) must be defined. | 1051 | To support this, $(archhelp) must be defined. |
| 1052 | 1052 | ||
| 1053 | Example: | 1053 | Example: |
| 1054 | #arch/i386/Makefile | 1054 | #arch/x86/Makefile |
| 1055 | define archhelp | 1055 | define archhelp |
| 1056 | echo '* bzImage - Image (arch/$(ARCH)/boot/bzImage)' | 1056 | echo '* bzImage - Image (arch/$(ARCH)/boot/bzImage)' |
| 1057 | endif | 1057 | endif |
| @@ -1065,7 +1065,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1065 | from vmlinux. | 1065 | from vmlinux. |
| 1066 | 1066 | ||
| 1067 | Example: | 1067 | Example: |
| 1068 | #arch/i386/Makefile | 1068 | #arch/x86/Makefile |
| 1069 | all: bzImage | 1069 | all: bzImage |
| 1070 | 1070 | ||
| 1071 | When "make" is executed without arguments, bzImage will be built. | 1071 | When "make" is executed without arguments, bzImage will be built. |
| @@ -1083,7 +1083,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1083 | 2) kbuild knows what files to delete during "make clean" | 1083 | 2) kbuild knows what files to delete during "make clean" |
| 1084 | 1084 | ||
| 1085 | Example: | 1085 | Example: |
| 1086 | #arch/i386/kernel/Makefile | 1086 | #arch/x86/kernel/Makefile |
| 1087 | extra-y := head.o init_task.o | 1087 | extra-y := head.o init_task.o |
| 1088 | 1088 | ||
| 1089 | In this example, extra-y is used to list object files that | 1089 | In this example, extra-y is used to list object files that |
| @@ -1133,7 +1133,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1133 | Compress target. Use maximum compression to compress target. | 1133 | Compress target. Use maximum compression to compress target. |
| 1134 | 1134 | ||
| 1135 | Example: | 1135 | Example: |
| 1136 | #arch/i386/boot/Makefile | 1136 | #arch/x86/boot/Makefile |
| 1137 | LDFLAGS_bootsect := -Ttext 0x0 -s --oformat binary | 1137 | LDFLAGS_bootsect := -Ttext 0x0 -s --oformat binary |
| 1138 | LDFLAGS_setup := -Ttext 0x0 -s --oformat binary -e begtext | 1138 | LDFLAGS_setup := -Ttext 0x0 -s --oformat binary -e begtext |
| 1139 | 1139 | ||
| @@ -1193,7 +1193,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1193 | 1193 | ||
| 1194 | When updating the $(obj)/bzImage target, the line | 1194 | When updating the $(obj)/bzImage target, the line |
| 1195 | 1195 | ||
| 1196 | BUILD arch/i386/boot/bzImage | 1196 | BUILD arch/x86/boot/bzImage |
| 1197 | 1197 | ||
| 1198 | will be displayed with "make KBUILD_VERBOSE=0". | 1198 | will be displayed with "make KBUILD_VERBOSE=0". |
| 1199 | 1199 | ||
| @@ -1207,7 +1207,7 @@ When kbuild executes, the following steps are followed (roughly): | |||
| 1207 | kbuild knows .lds files and includes a rule *lds.S -> *lds. | 1207 | kbuild knows .lds files and includes a rule *lds.S -> *lds. |
| 1208 | 1208 | ||
| 1209 | Example: | 1209 | Example: |
| 1210 | #arch/i386/kernel/Makefile | 1210 | #arch/x86/kernel/Makefile |
| 1211 | always := vmlinux.lds | 1211 | always := vmlinux.lds |
| 1212 | 1212 | ||
| 1213 | #Makefile | 1213 | #Makefile |
diff --git a/Documentation/magic-number.txt b/Documentation/magic-number.txt index 4b12abcb2ad3..abf481f780ec 100644 --- a/Documentation/magic-number.txt +++ b/Documentation/magic-number.txt | |||
| @@ -66,7 +66,7 @@ MKISS_DRIVER_MAGIC 0x04bf mkiss_channel drivers/net/mkiss.h | |||
| 66 | RISCOM8_MAGIC 0x0907 riscom_port drivers/char/riscom8.h | 66 | RISCOM8_MAGIC 0x0907 riscom_port drivers/char/riscom8.h |
| 67 | SPECIALIX_MAGIC 0x0907 specialix_port drivers/char/specialix_io8.h | 67 | SPECIALIX_MAGIC 0x0907 specialix_port drivers/char/specialix_io8.h |
| 68 | HDLC_MAGIC 0x239e n_hdlc drivers/char/n_hdlc.c | 68 | HDLC_MAGIC 0x239e n_hdlc drivers/char/n_hdlc.c |
| 69 | APM_BIOS_MAGIC 0x4101 apm_user arch/i386/kernel/apm.c | 69 | APM_BIOS_MAGIC 0x4101 apm_user arch/x86/kernel/apm_32.c |
| 70 | CYCLADES_MAGIC 0x4359 cyclades_port include/linux/cyclades.h | 70 | CYCLADES_MAGIC 0x4359 cyclades_port include/linux/cyclades.h |
| 71 | DB_MAGIC 0x4442 fc_info drivers/net/iph5526_novram.c | 71 | DB_MAGIC 0x4442 fc_info drivers/net/iph5526_novram.c |
| 72 | DL_MAGIC 0x444d fc_info drivers/net/iph5526_novram.c | 72 | DL_MAGIC 0x444d fc_info drivers/net/iph5526_novram.c |
diff --git a/Documentation/mca.txt b/Documentation/mca.txt index 510375d4209a..dfd130c2207d 100644 --- a/Documentation/mca.txt +++ b/Documentation/mca.txt | |||
| @@ -11,7 +11,7 @@ Adapter Detection | |||
| 11 | 11 | ||
| 12 | The ideal MCA adapter detection is done through the use of the | 12 | The ideal MCA adapter detection is done through the use of the |
| 13 | Programmable Option Select registers. Generic functions for doing | 13 | Programmable Option Select registers. Generic functions for doing |
| 14 | this have been added in include/linux/mca.h and arch/i386/kernel/mca.c. | 14 | this have been added in include/linux/mca.h and arch/x86/kernel/mca_32.c. |
| 15 | Everything needed to detect adapters and read (and write) configuration | 15 | Everything needed to detect adapters and read (and write) configuration |
| 16 | information is there. A number of MCA-specific drivers already use | 16 | information is there. A number of MCA-specific drivers already use |
| 17 | this. The typical probe code looks like the following: | 17 | this. The typical probe code looks like the following: |
| @@ -81,7 +81,7 @@ more people use shared IRQs on PCI machines. | |||
| 81 | In general, an interrupt must be acknowledged not only at the ICU (which | 81 | In general, an interrupt must be acknowledged not only at the ICU (which |
| 82 | is done automagically by the kernel), but at the device level. In | 82 | is done automagically by the kernel), but at the device level. In |
| 83 | particular, IRQ 0 must be reset after a timer interrupt (now done in | 83 | particular, IRQ 0 must be reset after a timer interrupt (now done in |
| 84 | arch/i386/kernel/time.c) or the first timer interrupt hangs the system. | 84 | arch/x86/kernel/time.c) or the first timer interrupt hangs the system. |
| 85 | There were also problems with the 1.3.x floppy drivers, but that seems | 85 | There were also problems with the 1.3.x floppy drivers, but that seems |
| 86 | to have been fixed. | 86 | to have been fixed. |
| 87 | 87 | ||
diff --git a/Documentation/scheduler/sched-arch.txt b/Documentation/scheduler/sched-arch.txt index d43dbcbd163b..28aa1075e291 100644 --- a/Documentation/scheduler/sched-arch.txt +++ b/Documentation/scheduler/sched-arch.txt | |||
| @@ -66,7 +66,7 @@ Your cpu_idle routines need to obey the following rules: | |||
| 66 | barrier issued (followed by a test of need_resched with | 66 | barrier issued (followed by a test of need_resched with |
| 67 | interrupts disabled, as explained in 3). | 67 | interrupts disabled, as explained in 3). |
| 68 | 68 | ||
| 69 | arch/i386/kernel/process.c has examples of both polling and | 69 | arch/x86/kernel/process.c has examples of both polling and |
| 70 | sleeping idle functions. | 70 | sleeping idle functions. |
| 71 | 71 | ||
| 72 | 72 | ||
diff --git a/Documentation/scsi/BusLogic.txt b/Documentation/scsi/BusLogic.txt index d7fbc9488b98..48e982cd6fe7 100644 --- a/Documentation/scsi/BusLogic.txt +++ b/Documentation/scsi/BusLogic.txt | |||
| @@ -553,7 +553,7 @@ replacing "/usr/src" with wherever you keep your Linux kernel source tree: | |||
| 553 | make config | 553 | make config |
| 554 | make zImage | 554 | make zImage |
| 555 | 555 | ||
| 556 | Then install "arch/i386/boot/zImage" as your standard kernel, run lilo if | 556 | Then install "arch/x86/boot/zImage" as your standard kernel, run lilo if |
| 557 | appropriate, and reboot. | 557 | appropriate, and reboot. |
| 558 | 558 | ||
| 559 | 559 | ||
diff --git a/Documentation/serial/computone.txt b/Documentation/serial/computone.txt index c57ea4781e5d..60a6f657c37d 100644 --- a/Documentation/serial/computone.txt +++ b/Documentation/serial/computone.txt | |||
| @@ -87,7 +87,7 @@ c) Set address on ISA cards then: | |||
| 87 | edit /usr/src/linux/drivers/char/ip2.c | 87 | edit /usr/src/linux/drivers/char/ip2.c |
| 88 | (Optional - may be specified on kernel command line now) | 88 | (Optional - may be specified on kernel command line now) |
| 89 | d) Run "make zImage" or whatever target you prefer. | 89 | d) Run "make zImage" or whatever target you prefer. |
| 90 | e) mv /usr/src/linux/arch/i386/boot/zImage to /boot. | 90 | e) mv /usr/src/linux/arch/x86/boot/zImage to /boot. |
| 91 | f) Add new config for this kernel into /etc/lilo.conf, run "lilo" | 91 | f) Add new config for this kernel into /etc/lilo.conf, run "lilo" |
| 92 | or copy to a floppy disk and boot from that floppy disk. | 92 | or copy to a floppy disk and boot from that floppy disk. |
| 93 | g) Reboot using this kernel | 93 | g) Reboot using this kernel |
diff --git a/Documentation/zh_CN/magic-number.txt b/Documentation/zh_CN/magic-number.txt index 4c4ce853577b..c278f412dc65 100644 --- a/Documentation/zh_CN/magic-number.txt +++ b/Documentation/zh_CN/magic-number.txt | |||
| @@ -66,7 +66,7 @@ MKISS_DRIVER_MAGIC 0x04bf mkiss_channel drivers/net/mkiss.h | |||
| 66 | RISCOM8_MAGIC 0x0907 riscom_port drivers/char/riscom8.h | 66 | RISCOM8_MAGIC 0x0907 riscom_port drivers/char/riscom8.h |
| 67 | SPECIALIX_MAGIC 0x0907 specialix_port drivers/char/specialix_io8.h | 67 | SPECIALIX_MAGIC 0x0907 specialix_port drivers/char/specialix_io8.h |
| 68 | HDLC_MAGIC 0x239e n_hdlc drivers/char/n_hdlc.c | 68 | HDLC_MAGIC 0x239e n_hdlc drivers/char/n_hdlc.c |
| 69 | APM_BIOS_MAGIC 0x4101 apm_user arch/i386/kernel/apm.c | 69 | APM_BIOS_MAGIC 0x4101 apm_user arch/x86/kernel/apm_32.c |
| 70 | CYCLADES_MAGIC 0x4359 cyclades_port include/linux/cyclades.h | 70 | CYCLADES_MAGIC 0x4359 cyclades_port include/linux/cyclades.h |
| 71 | DB_MAGIC 0x4442 fc_info drivers/net/iph5526_novram.c | 71 | DB_MAGIC 0x4442 fc_info drivers/net/iph5526_novram.c |
| 72 | DL_MAGIC 0x444d fc_info drivers/net/iph5526_novram.c | 72 | DL_MAGIC 0x444d fc_info drivers/net/iph5526_novram.c |
