summaryrefslogtreecommitdiff
path: root/dselect/setup
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2023-02-27 09:21:24 +0000
committerJulian Andres Klode <jak@debian.org>2023-02-27 09:21:24 +0000
commitf98732f703601a8db67527b1b82f3296290f2dc1 (patch)
treeb0ec8e8069f96df4cb6f45dbff18a8dda07c0169 /dselect/setup
parentf27de33f139c99b78f89afe5fa9f45540e0154b2 (diff)
parent9712edf6151308148518058bfbd5ccd937509143 (diff)
Merge branch 'feature/non-free-firmware' into 'main'
Support transition to new non-free-firmware component See merge request apt-team/apt!282
Diffstat (limited to 'dselect/setup')
-rwxr-xr-xdselect/setup8
1 files changed, 4 insertions, 4 deletions
diff --git a/dselect/setup b/dselect/setup
index 8689d2388..58eecfcdc 100755
--- a/dselect/setup
+++ b/dselect/setup
@@ -30,8 +30,8 @@ my $boldoff=`setterm -bold off`;
my @known_types = ('deb');
my @known_access = ('http', 'ftp', 'file');
-my @typical_distributions = ('stable', 'unstable', 'testing', 'non-US');
-my @typical_components = ('main', 'contrib', 'non-free');
+my @typical_distributions = ('stable', 'unstable', 'testing');
+my @typical_components = ('main', 'contrib', 'non-free', 'non-free-firmware');
my %known_access = map {($_,$_)} @known_access;
my %typical_distributions = map {($_,$_)} @typical_distributions;
@@ -118,9 +118,9 @@ sub get_source {
}
$type = 'deb';
- $urn = "http://http.us.debian.org/debian" unless $urn;
+ $urn = "http://deb.debian.org/debian" unless $urn;
$distribution = "stable" unless $distribution;
- $components = "main contrib non-free" unless $components;
+ $components = "main contrib non-free non-free-firmware" unless $components;
$rec->{'Type'} = 'deb';