Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) # SPDX-License-Identifier: GPL-2.0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) config EARLY_PRINTK
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 	bool
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) 	depends on ALPHA_GENERIC || ALPHA_SRM
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 	default y
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) config ALPHA_LEGACY_START_ADDRESS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 	bool "Legacy kernel start address"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 	depends on ALPHA_GENERIC
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 	default n
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 	  The 2.4 kernel changed the kernel start address from 0x310000
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	  to 0x810000 to make room for the Wildfire's larger SRM console.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) 	  Recent consoles on Titan and Marvel machines also require the
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 	  extra room.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 	  If you're using aboot 0.7 or later, the bootloader will examine the
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 	  ELF headers to determine where to transfer control. Unfortunately,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 	  most older bootloaders -- APB or MILO -- hardcoded the kernel start
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) 	  address rather than examining the ELF headers, and the result is a
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 	  hard lockup.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 	  Say Y if you have a broken bootloader.  Say N if you do not, or if
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 	  you wish to run on Wildfire, Titan, or Marvel.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) config ALPHA_LEGACY_START_ADDRESS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 	bool
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 	depends on !ALPHA_GENERIC && !ALPHA_TITAN && !ALPHA_MARVEL && !ALPHA_WILDFIRE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 	default y
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) config MATHEMU
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) 	tristate "Kernel FP software completion" if DEBUG_KERNEL && !SMP
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) 	default y if !DEBUG_KERNEL || SMP
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) 	  This option is required for IEEE compliant floating point arithmetic
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) 	  on the Alpha. The only time you would ever not say Y is to say M in
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) 	  order to debug the code. Say Y unless you know what you are doing.