Opções de kernel personalizadas para o Amazon Linux 2015.03

1

Estou tentando criar um kernel personalizado para a versão 2015.03 com CONFIG_HOTPLUG_CPU desativado. Seguindo um monte de tópicos neste fórum e em outros lugares, eu pude construir um novo RPM do kernel, mas a opção que estou configurando não está tendo efeito.

Os passos até agora são:

# Download the kernel source
/usr/bin/get_reference_source -p kernel-$(uname -r)

# Install some needed packages
/usr/bin/yum install -y gcc gcc44 system-rpm-config m4 rpm-build gdb xmlto asciidoc elfutils-devel zlib-devel binutils-devel python-devel perl gettext newt-devel perl-ExtUtils-Embed bison audit-libs-devel python27-devel pciutils-devel

# Add the mockbuild user which seems to be needed by the kernel source RPM
/usr/sbin/useradd mockbuild

# Install the source RPM
/bin/rpm -Uvh /usr/src/srpm/debug/kernel*.src.rpm

# Disable CONFIG_HOTPLUG_CPU
/bin/sed -i 's/HOTPLUG_CPU=y/HOTPLUG_CPU=n/' /usr/src/rpm/SOURCES/config*

# Set a custom build ID in the spec file
/bin/sed -i 's/buildid 31.38/buildid mybuild/' /usr/src/rpm/SPECS/kernel.spec

# Build the RPM
/usr/bin/rpmbuild -bb /usr/src/rpm/SPECS/kernel.spec

# Install the RPM
/usr/bin/yum localinstall /usr/src/rpm/RPMS/x86_64/kernel-3.14.42-31.38.tmo.amzn1.x86_64.rpm

A partir daí, vejo que o novo kernel está realmente disponível no disco, mas CONFIG_HOTPLUG_CPU ainda está ativado:

$ grep HOTPLUG_CPU= /boot/config-3.14.mybuild*
/boot/config-3.14.42-mybuild.amzn1.x86_64:CONFIG_HOTPLUG_CPU=y
/boot/config-3.14.42-mybuild.amzn1.x86_64:CONFIG_ACPI_HOTPLUG_CPU=y

O que mais é necessário para desativar o CONFIG_HOTPLUG_CPU e configurar o novo kernel?

    
por Ben Whaley 09.06.2015 / 16:11

1 resposta

1

Eu finalmente resolvi isso extraindo a fonte do kernel, editando as opções de configuração, recriando o tarball. Parece assim:

# Extract the Kconfig file to change the kernel options
/bin/tar xfv /usr/src/rpm/SOURCES/linux-${vanilla_kernel}.tar linux-${vanilla_kernel}/arch/x86/Kconfig

# Change the options
/bin/sed -i '/ARCH_HIBERNATION_POSSIBLE/!b;n;c\tdef_bool n' linux-${vanilla_kernel}/arch/x86/Kconfig
/bin/sed -i '/ARCH_SUSPEND_POSSIBLE/!b;n;c\tdef_bool n' linux-${vanilla_kernel}/arch/x86/Kconfig
/bin/sed -i '/Support for hot-pluggable CPUs/!b;n;c\t\tdefault n' linux-${vanilla_kernel}/arch/x86/Kconfig

# Add the new Kconfig to the tarball
# There will now be two of these and the last one wins
/bin/tar rf /usr/src/rpm/SOURCES/linux-${vanilla_kernel}.tar linux-${vanilla_kernel}/arch/x86/Kconfig

# Change the build id to include our suffix
/bin/sed -i 's/\(buildid.*\)/\.mybuild/' /usr/src/rpm/SPECS/kernel.spec

# Build the new kernel RPM
/usr/bin/rpmbuild -bb /usr/src/rpm/SPECS/kernel.spec

Isso resulta em um novo conjunto de RPM e posso confirmar que o CONFIG_HOTPLUG_CPU não está ativado.

    
por 16.06.2015 / 16:28