X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/8e451651ca53c595513b5fb45789c63edfdc9be0..ce492006c529807cfcc3dafc471b71ddd8474c59:/patch_kernel_config.pl diff --git a/patch_kernel_config.pl b/patch_kernel_config.pl index 6b4c701..617cfc3 100644 --- a/patch_kernel_config.pl +++ b/patch_kernel_config.pl @@ -6,7 +6,7 @@ use warnings FATAL => 'all'; # This was taken from the linux-image-5.16.0-3-arm64-unsigned # Than it was copied as .config in the asahi tree # Than make olddefconfig was executed twice -my @lines = `cat config`; +my @lines = `cat .config`; chomp @lines; my %asahi_options = ( @@ -69,6 +69,13 @@ my %asahi_options = ( 'CONFIG_APPLE_M1_CPU_PMU' => 'y', 'CONFIG_SND_SOC_CS42L83' => 'm', 'CONFIG_DRM_APPLE' => 'y', + 'CONFIG_DRM_ASAHI' => 'y', + 'CONFIG_GENERIC_PHY' => 'y', + 'CONFIG_PHY_APPLE_ATC' => 'm', + 'CONFIG_CONSTRUCTORS' => 'y', + 'CONFIG_RUST' => 'y', + 'CONFIG_PWM_APPLE' => 'm', + 'CONFIG_DRM_SIMPLEDRM_BACKLIGHT' => 'y', ); my %debian_options; @@ -91,7 +98,7 @@ for my $o (keys %asahi_options) { } } -open(CONFIG, '>', 'config.new') || die; +open(CONFIG, '>', '.config') || die; for (keys %debian_options) { print CONFIG $_ . '=' . $debian_options{$_} . "\n"; }