Skip to content
Snippets Groups Projects
Select Git revision
  • 35e8b533852dcedb25bdd017d0269309be933fc9
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
41 results

0010-kernel-backport-slub-prefetch-fix-from-v4.19.patch

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    generate.pl 402 B
    use warnings;
    
    
    my %config;
    
    sub add_config {
    	my ($prefix, $c) = @_;
    
    	foreach my $key (keys $c) {
    		my $val = $c->{$key};
    
    		if (ref($val) eq 'HASH') {
    			add_config($key . '.', $val);
    		}
    		unless (ref($val)) {
    			$config{'@' . $prefix . $key . '@'} = $val;
    		}
    	}
    }
    
    add_config('', $CONFIG);
    
    
    my $regex = join '|', map {quotemeta} keys %config;
    
    
    for (<>) {
    	s/($regex)/${config{$1}}/g;
    	print;
    }