Package Base Details: linux-clear

Git Clone URL: https://aur.archlinux.org/linux-clear.git (read-only, click to copy)
Keywords: clear clearlinux intel kernel
Submitter: metak
Maintainer: metak
Last Packager: metak
Votes: 71
Popularity: 1.54
First Submitted: 2018-01-18 21:47 (UTC)
Last Updated: 2024-04-18 17:48 (UTC)

Pinned Comments

metak commented on 2022-03-27 13:44 (UTC) (edited on 2022-04-02 13:20 (UTC) by metak)

The PKGBUILD file supports a few different configurable build-time options:
  • _makenconfig Tweak kernel options prior to a build via nconfig. Pseudo-graphical menu based on ncurses. 1 2
  • _localmodcfg Only compile active modules to VASTLY reduce the number of modules built and the build time.
  • Please read arch wiki page for detailed explanation on how to use it.
  • _subarch Enable additional optimization/tuning for kernel builds by adding more micro-architectures options. Default is Generic-x86-64 number 36 if nothing else is selected.
  • PKGBUILD file with the list of architectures
  • graysky kernel_compiler_patch
  • _use_current Use the current kernel's .config file. Enabling this option will use the .config of the RUNNING kernel rather than the ARCH defaults. Useful when the package gets updated and you already went through the trouble of customizing your config options. NOT recommended when a new kernel is released, but again, convenient for package bumps.
  • _use_llvm_lto Compile the kernel with LLVM/Clang.
  • _debug Enable y some additional debug features present in arch kernel, but not in Clear upstream. n to force disable or leave empty to ignore.
Lastly, build the kernel by setting your environment variable env _subarch=40 _localmodcfg=y.

metak commented on 2018-01-22 01:49 (UTC) (edited on 2021-12-01 12:47 (UTC) by metak)

1. Binaries available in my repo: http://download.opensuse.org/repositories/home:/metakcahura:/kernel/Arch_Extra_standard/x86_64/
[home_metakcahura_kernel_Arch_Extra_standard]
SigLevel = Never
Server = http://download.opensuse.org/repositories/home:/metakcahura:/kernel/Arch_Extra_standard/$arch
THIS IS OPTIONAL:
2. After install adjust your boot cmd line. ClearLinux uses clr-boot-manager which takes care of that. This is upstream default:
quiet console=tty0 console=ttyS0,115200n8 cryptomgr.notests initcall_debug intel_iommu=igfx_off kvm-intel.nested=1 no_timer_check noreplace-smp page_alloc.shuffle=1 rcupdate.rcu_expedited=1 rootfstype=ext4,btrfs,xfs,f2fs tsc=reliable rw 

Latest Comments

« First ‹ Previous 1 .. 10 11 12 13 14 15 16 17 18 19 20 .. 47 Next › Last »

Gonzo2028 commented on 2021-03-09 14:11 (UTC)

enabling CONFIG_NET_VENDOR_AQUANTIA worked for me.

metak commented on 2021-03-09 14:02 (UTC)

@Gonzo2028 Hi. I've enabled CONFIG_NET_VENDOR_AQUANTIA, does that work for you or do you need me to also build the atlantic module?

Gonzo2028 commented on 2021-03-08 08:55 (UTC)

Found CONFIG_NET_VENDOR_AQUANTIA is disabled in config. Compiling and then testing...

Gonzo2028 commented on 2021-03-08 08:47 (UTC)

My new 10GBE Ethernet card seems to not work with that kernel. It hangs on boot. Any ideas? Stock kernel works fine.

lspci -v 05:00.0 Ethernet controller: Aquantia Corp. AQC100 10G Ethernet MAC controller [AQtion] (rev 02)

modprobed.db

8021q ac97_bus acpi_cpufreq aesni_intel af_alg agpgart ahci algif_hash algif_skcipher asus_wmi atlantic battery bluetooth bnep btbcm btintel btrtl btusb cbc ccp cec cfg80211 cifs cmac crc16 crc32c_generic crc32c_intel crc32_pclmul crct10dif_pclmul cryptd crypto_simd crypto_user dca dm_crypt dm_integrity dm_mod dns_resolver drm drm_kms_helper ecc ecdh_generic edac_mce_amd eeepc_wmi efivars encrypted_keys evdev ext2 ext3 ext4 f2fs fat fb_sys_fops ff_memless fixed_phy fscache fuse garp ghash_clmulni_intel glue_helper hid hid_fanatec hid_generic hid_logitech_hidpp hid_sony hwmon_vid i2c_algo_bit i2c_nvidia_gpu i2c_piix4 igb input_leds intel_rapl_common intel_rapl_msr ip6table_filter ip6_tables iptable_filter ip_tables irqbypass isofs jbd2 joydev k10temp kvm kvm_amd ledtrig_audio libahci libarc4 libata libdes libphy llc loop mac_hid macsec mbcache mc md4 mdio_devres mousedev mrp msr mxm_wmi nct6775 nls_cp437 nls_iso8859_1 nls_utf8 of_mdio pcspkr pinctrl_amd r8169 rapl rc_core realtek rfcomm rfkill rng_core sch_fq scsi_mod sd_mod sg snd snd_compress snd_hda_codec snd_hda_codec_generic snd_hda_codec_hdmi snd_hda_codec_realtek snd_hda_core snd_hda_intel snd_hwdep snd_intel_dspcfg snd_intel_nhlt snd_mixer_oss snd_pcm snd_pcm_dmaengine snd_pcm_oss snd_rawmidi snd_seq_device snd_soc_core snd_timer snd_usb_audio snd_usbmidi_lib soundcore soundwire_bus soundwire_cadence soundwire_generic_allocation soundwire_intel sp5100_tco sparse_keymap stp syscopyarea sysfillrect sysimgblt tcp_bbr tpm tpm_crb tpm_tis tpm_tis_core trusted ttm typec typec_displayport typec_ucsi uas ucsi_ccg uhid uinput usbhid

metak commented on 2021-01-19 20:37 (UTC)

@Gonzo2028 You can check in the kernel config file in /proc/config.gz at # Processor type and features section.

zcat /proc/config.gz > /tmp/config-$(uname -r)

Gonzo2028 commented on 2021-01-19 19:34 (UTC)

Thanks! I will give it a try. Is there a method to read the used subarch on compilation for the current running kernel?

metak commented on 2021-01-19 18:03 (UTC)

@Gonzo2028 You just have to make a small change to pkgbuild file, set _subarch=13 for zen3 and point the source for gcc optimizations patch to latest commit to get the required patch.
https://pastebin.com/DPCQ0WeN

Gonzo2028 commented on 2021-01-19 17:18 (UTC)

or just tell me how to implement znver3 then ;). Thanks.

Gonzo2028 commented on 2021-01-19 17:09 (UTC)

i have gcc 11 installed, i just need the option. or will native detect znver3 if available?

metak commented on 2021-01-10 20:08 (UTC)

@Gonzo2028 Hi, znver3 requires gcc from trunk so I can't add that.
Add -march=znver3/requires gcc trunk at this time