Lines Matching +full:entry +full:- +full:method
9 ---------------------
21 If you wish to cross-compile, then alter the following lines in the top
36 CROSS_COMPILE=<your-path-to-your-compiler-without-gcc>
40 CROSS_COMPILE=arm-linux-
48 ---------------
54 Bug reports should be sent to linux-arm-kernel@lists.arm.linux.org.uk,
64 -------------
66 Several new include directories have been created under include/asm-arm,
67 which are there to reduce the clutter in the top-level directory. These
71 `arch-*` machine/platform specific header files
72 `hardware` driver-internal ARM specific data structures/definitions
74 `proc-*` processor dependent header files (currently only two
80 ------------------------
84 machine-specific parts by directory. For this, the machine category is
88 To this end, we now have arch/arm/mach-$(MACHINE) directories which are
89 designed to house the non-driver files for a particular machine (eg, PCI,
91 machines, there should be a corresponding arch/arm/mach-$(MACHINE)/include/mach
96 -------
109 ----------------
116 the start, and as such, you will have to give '-o offset' to losetup.
120 ---------------------
132 -----------------
142 big external 5.25" FH 64MB drive (who could ever want more :-) ).
146 last week :-)
154 -----------
162 ---------------------------------
174 Kernel entry (head.S)
175 ---------------------
176 The initial entry into the kernel is via head.S, which uses machine
178 entry, which must be kept unique.
181 for, we have a method to manage this which ensures that we don't end up
187 classes are given directories - arch/arm/mach-<class> - which contain
191 devices, and contains the code to support the way the on-board and off-
197 compile-time, support for the machine type must be selected. This allows for
201 controlled by the machine type ID, which acts both as a run-time and a
202 compile-time code selection method. You can register a new machine via the
207 Note: Please do not register a machine type for DT-only platforms. If your
208 platform is DT-only, you do not need a registered machine type.
210 ---