public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/releng:master commit in: releases/weekly/specs/amd64/hardened/, releases/weekly/specs/amd64/, ...
@ 2015-12-18  1:56 Matt Thode
  0 siblings, 0 replies; 3+ messages in thread
From: Matt Thode @ 2015-12-18  1:56 UTC (permalink / raw
  To: gentoo-commits

commit:     65df2e34bf8a2edbbf20b226ac77ff1a92cbe52a
Author:     Matthew Thode <mthode <AT> mthode <DOT> org>
AuthorDate: Fri Dec 18 01:54:15 2015 +0000
Commit:     Matt Thode <prometheanfire <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 01:54:15 2015 +0000
URL:        https://gitweb.gentoo.org/proj/releng.git/commit/?id=65df2e34

removed bad prep.sh, added correct prep.sh and renamed to cloud-prep.sh

old script was the qcow generation script
renamed to cloud-prep.sh to be more clear as to it's purpose

 releases/weekly/scripts/cloud-prep.sh              | 79 ++++++++++++++++++++++
 releases/weekly/scripts/prep.sh                    | 79 ----------------------
 .../specs/amd64/hardened/stage4-nomultilib.spec    |  2 +-
 releases/weekly/specs/amd64/hardened/stage4.spec   |  2 +-
 releases/weekly/specs/amd64/stage4-nomultilib.spec |  2 +-
 releases/weekly/specs/amd64/stage4.spec            |  2 +-
 6 files changed, 83 insertions(+), 83 deletions(-)

diff --git a/releases/weekly/scripts/cloud-prep.sh b/releases/weekly/scripts/cloud-prep.sh
new file mode 100644
index 0000000..6778713
--- /dev/null
+++ b/releases/weekly/scripts/cloud-prep.sh
@@ -0,0 +1,79 @@
+#!/bin/bash
+
+# Set timezone
+echo 'UTC' > /etc/timezone
+
+# Set locale
+echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen
+echo 'en_US ISO-8859-1' >> /etc/locale.gen
+locale-gen
+eselect locale set en_US.utf8
+
+# Some rootfs stuff
+grep -v rootfs /proc/mounts > /etc/mtab
+
+# This is set in rackspaces prep, might help us
+echo 'net.ipv4.conf.eth0.arp_notify = 1' >> /etc/sysctl.conf
+echo 'vm.swappiness = 0' >> /etc/sysctl.conf
+
+# Let's configure out grub
+mkdir /boot/grub
+echo 'GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0,115200n8"' >> /etc/default/grub
+grub2-mkconfig -o /boot/grub/grub.cfg
+sed -r -i 's/loop[0-9]+p1/vda2/g' /boot/grub/grub.cfg
+sed -i 's/UUID=[a-z,0-9,-]*/\/dev\/vda2/g' /boot/grub/grub.cfg
+
+# And the fstab
+echo '/dev/vda2 / ext4 defaults 0 0' > /etc/fstab
+
+# allow the console log
+sed -i 's/#s0/s0/g' /etc/inittab
+
+# let ipv6 use normal slaac
+sed -i 's/slaac/#slaac/g' /etc/dhcpcd.conf
+# don't let dhcpcd set domain name or hostname
+sed -i 's/domain_name\,\ domain_search\,\ host_name/domain_search/g' /etc/dhcpcd.conf
+
+# need to do this here because it clobbers an openrc owned file
+cat > /etc/conf.d/hostname << "EOL"
+# Set to the hostname of this machine
+if [ -f /etc/hostname ];then
+  hostname=$(cat /etc/hostname 2> /dev/null | cut -d"." -f1 2> /dev/null)
+else
+  hostname="localhost"
+fi
+EOL
+chmod 0644 /etc/conf.d/hostname
+chown root:root /etc/conf.d/hostname
+
+# set a nice default for /etc/resolv.conf
+cat > /etc/resolv.conf << EOL
+nameserver 8.8.8.8
+EOL
+
+# let's upgrade (security fixes and otherwise)
+USE="-build" emerge -uDNv --with-bdeps=y --jobs=2 @world
+USE="-build" emerge --verbose=n --depclean
+USE="-build" emerge -v --usepkg=n @preserved-rebuild
+etc-update --automode -3
+
+# Clean up portage
+emerge --verbose=n --depclean
+eix-update
+emaint all -f
+eselect news read all
+eclean-dist --destructive
+sed -i '/^USE=\"\${USE}\ \ build\"$/d' /etc/portage/make.conf
+
+# clean up system
+passwd -d root
+passwd -l root
+rm -f /usr/portage/distfiles/*
+rm -f /etc/ssh/ssh_host_*
+rm -f /root/.bash_history
+rm -f /root/.nano_history
+rm -f /root/.lesshst
+rm -f /root/.ssh/known_hosts
+rm -f /usr/src/linux
+for i in $(find /var/log -type f); do echo > $i; done
+for i in $(find /tmp -type f); do rm -f $i; done

diff --git a/releases/weekly/scripts/prep.sh b/releases/weekly/scripts/prep.sh
deleted file mode 100644
index 22478a9..0000000
--- a/releases/weekly/scripts/prep.sh
+++ /dev/null
@@ -1,79 +0,0 @@
-#!/usr/bin/env bash
-#
-# Okay, so here's some real meat.  We take a drive (as 02 said, I use a VM),
-# and we spray that stage4 all over it.  Then we rub some grub (0.97) all over
-# it to make it feel better, and then we box it up and ship it out.
-
-set -e -u -x -o pipefail
-
-# Vars
-export TEMP_DIR=${TEMP_DIR:-'/root/tmp/catalyst/gentoo'}
-export MOUNT_DIR=${MOUNT_DIR:-'/mnt'}
-export DATE=${DATE:-"$(date +%Y%m%d)"}
-export PORTAGE_DIR=${PORTAGE_DIR:-"/var/tmp/catalyst/snapshots"}
-# profiles supported are as follows
-# default/linux/amd64/13.0
-# default/linux/amd64/13.0/no-multilib
-# hardened/linux/amd64
-# hardened/linux/amd64/no-multilib
-# hardened/linux/amd64/selinux (eventually)
-# hardened/linux/amd64/no-multilib/selinux (eventually)
-export PROFILE=${PROFILE:-"default/linux/amd64/13.0"}
-if [[ "${PROFILE}" == "default/linux/amd64/13.0" ]]; then
-  PROFILE_SHORTNAME="amd64-default"
-elif [[ "${PROFILE}" == "default/linux/amd64/13.0/no-multilib" ]]; then
-  PROFILE_SHORTNAME="amd64-default-nomultilib"
-elif [[ "${PROFILE}" == "hardened/linux/amd64" ]]; then
-  PROFILE_SHORTNAME="amd64-hardened"
-elif [[ "${PROFILE}" == "hardened/linux/amd64/no-multilib" ]]; then
-  PROFILE_SHORTNAME="amd64-hardened-nomultilib"
-else
-  echo 'invalid profile, exiting'
-  exit 1
-fi
-export TARBALL=${TARBALL:-"/root/tmp/catalyst/gentoo/stage4-${PROFILE_SHORTNAME}-${DATE}.tar.bz2"}
-export TEMP_IMAGE=${TEMP_IMAGE:-"gentoo-${PROFILE_SHORTNAME}.img"}
-export TARGET_IMAGE=${TARGET_IMAGE:-"/root/openstack-${PROFILE_SHORTNAME}-${DATE}.qcow2"}
-
-# create a raw partition and do stuff with it
-fallocate -l 5G "${TEMP_DIR}/${TEMP_IMAGE}"
-BLOCK_DEV=$(losetup -f --show "${TEMP_DIR}/${TEMP_IMAGE}")
-
-# Okay, we have the disk, let's prep it
-echo 'Building disk'
-parted -s "${BLOCK_DEV}" mklabel gpt
-parted -s --align=none "${BLOCK_DEV}" mkpart bios_boot 0 2M
-parted -s --align=none "${BLOCK_DEV}" mkpart primary 2M 100%
-parted -s "${BLOCK_DEV}" set 1 boot on
-parted -s "${BLOCK_DEV}" set 1 bios_grub on
-mkfs.ext4 -F "${BLOCK_DEV}p2"
-
-# Mount it
-echo 'Mounting disk'
-mkdir -p "${MOUNT_DIR}/${PROFILE_SHORTNAME}"
-mount "${BLOCK_DEV}p2" "${MOUNT_DIR}/${PROFILE_SHORTNAME}"
-
-# Expand the stage
-echo 'Expanding tarball'
-tar --xattrs -xjpf "${TARBALL}" -C "${MOUNT_DIR}/${PROFILE_SHORTNAME}"
-
-echo 'Adding in /usr/portage'
-tar --xattrs -xjpf "${PORTAGE_DIR}/portage-latest.tar.bz2" -C "${MOUNT_DIR}/${PROFILE_SHORTNAME}/usr"
-
-# Install grub
-echo 'Installing grub'
-grub2-install "${BLOCK_DEV}" --boot-directory "${MOUNT_DIR}/${PROFILE_SHORTNAME}/boot"
-
-# Clean up
-echo 'Syncing; unmounting'
-sync
-umount "${MOUNT_DIR}/${PROFILE_SHORTNAME}"
-
-# get rid of block mapping
-losetup -d "${BLOCK_DEV}"
-
-echo 'Converting raw image to qcow2'
-qemu-img convert -c -f raw -O qcow2 "${TEMP_DIR}/${TEMP_IMAGE}" "${TARGET_IMAGE}"
-
-echo 'Cleaning up'
-rm "${TEMP_DIR}/${TEMP_IMAGE}"

diff --git a/releases/weekly/specs/amd64/hardened/stage4-nomultilib.spec b/releases/weekly/specs/amd64/hardened/stage4-nomultilib.spec
index 1ba0948..6f1bcfb 100644
--- a/releases/weekly/specs/amd64/hardened/stage4-nomultilib.spec
+++ b/releases/weekly/specs/amd64/hardened/stage4-nomultilib.spec
@@ -36,7 +36,7 @@ stage4/packages:
 	sys-devel/bc
 	sys-power/acpid
 	sys-process/cronie
-stage4/fsscript: /release/releng/releases/weekly/scripts/prep.sh
+stage4/fsscript: /release/releng/releases/weekly/scripts/cloud-prep.sh
 stage4/root_overlay: /release/releng/releases/weekly/overlays/cloud-overlay
 stage4/rcadd:
 	acpid|default

diff --git a/releases/weekly/specs/amd64/hardened/stage4.spec b/releases/weekly/specs/amd64/hardened/stage4.spec
index 707ec8a..136b511 100644
--- a/releases/weekly/specs/amd64/hardened/stage4.spec
+++ b/releases/weekly/specs/amd64/hardened/stage4.spec
@@ -36,7 +36,7 @@ stage4/packages:
 	sys-devel/bc
 	sys-power/acpid
 	sys-process/cronie
-stage4/fsscript: /release/releng/releases/weekly/scripts/prep.sh
+stage4/fsscript: /release/releng/releases/weekly/scripts/cloud-prep.sh
 stage4/root_overlay: /release/releng/releases/weekly/overlays/cloud-overlay
 stage4/rcadd:
 	acpid|default

diff --git a/releases/weekly/specs/amd64/stage4-nomultilib.spec b/releases/weekly/specs/amd64/stage4-nomultilib.spec
index e502645..c1b9c1d 100644
--- a/releases/weekly/specs/amd64/stage4-nomultilib.spec
+++ b/releases/weekly/specs/amd64/stage4-nomultilib.spec
@@ -36,7 +36,7 @@ stage4/packages:
 	sys-devel/bc
 	sys-power/acpid
 	sys-process/cronie
-stage4/fsscript: /release/releng/releases/weekly/scripts/prep.sh
+stage4/fsscript: /release/releng/releases/weekly/scripts/cloud-prep.sh
 stage4/root_overlay: /release/releng/releases/weekly/overlays/cloud-overlay
 stage4/rcadd:
 	acpid|default

diff --git a/releases/weekly/specs/amd64/stage4.spec b/releases/weekly/specs/amd64/stage4.spec
index 71e1ce9..aa8a3ff 100644
--- a/releases/weekly/specs/amd64/stage4.spec
+++ b/releases/weekly/specs/amd64/stage4.spec
@@ -36,7 +36,7 @@ stage4/packages:
 	sys-devel/bc
 	sys-power/acpid
 	sys-process/cronie
-stage4/fsscript: /release/releng/releases/weekly/scripts/prep.sh
+stage4/fsscript: /release/releng/releases/weekly/scripts/cloud-prep.sh
 stage4/root_overlay: /release/releng/releases/weekly/overlays/cloud-overlay
 stage4/rcadd:
 	acpid|default


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/releng:master commit in: releases/weekly/specs/amd64/hardened/, releases/weekly/specs/amd64/, ...
@ 2017-12-04 16:41 Robin H. Johnson
  0 siblings, 0 replies; 3+ messages in thread
From: Robin H. Johnson @ 2017-12-04 16:41 UTC (permalink / raw
  To: gentoo-commits

commit:     1b4139766c4f1028c82466ffd1271c76499f53e7
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  4 16:39:41 2017 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Dec  4 16:41:00 2017 +0000
URL:        https://gitweb.gentoo.org/proj/releng.git/commit/?id=1b413976

releases/weekly: drop net-dialup/globespan-adsl

net-dialup/globespan-adsl is obsolete
- does not build with GCC5
- dead upstream for 10+ years
- only for specific very old modems

Closes: https://bugs.gentoo.org/635578
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec | 1 -
 releases/weekly/specs/amd64/hardened/admincd-stage2.spec         | 1 -
 releases/weekly/specs/amd64/installcd-stage2-minimal.spec        | 1 -
 releases/weekly/specs/amd64/livecd-stage2.spec                   | 1 -
 releases/weekly/specs/amd64/livedvd-stage2.spec                  | 1 -
 releases/weekly/specs/x86/hardened/admincd-stage2.spec           | 1 -
 releases/weekly/specs/x86/hardened/installcd-stage2-minimal.spec | 1 -
 releases/weekly/specs/x86/i686/livecd-stage2.spec                | 1 -
 releases/weekly/specs/x86/i686/livedvd-stage2.spec               | 1 -
 releases/weekly/specs/x86/installcd-stage2-minimal.spec          | 1 -
 10 files changed, 10 deletions(-)

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec b/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec
index bcb99370..13f0e312 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec
@@ -80,7 +80,6 @@ boot/kernel/gentoo/packages:
 	app-accessibility/espeakup
 	media-libs/alsa-oss
 	media-sound/alsa-utils
-	net-dialup/globespan-adsl
 
 	sys-apps/pcmciautils
 	sys-kernel/linux-firmware

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage2.spec b/releases/weekly/specs/amd64/hardened/admincd-stage2.spec
index 4b66ae4e..4b3255cf 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage2.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage2.spec
@@ -80,7 +80,6 @@ boot/kernel/gentoo/packages:
 	app-accessibility/espeakup
 	media-libs/alsa-oss
 	media-sound/alsa-utils
-	net-dialup/globespan-adsl
 
 	sys-apps/pcmciautils
 	sys-kernel/linux-firmware

diff --git a/releases/weekly/specs/amd64/installcd-stage2-minimal.spec b/releases/weekly/specs/amd64/installcd-stage2-minimal.spec
index 99525f12..0fd97eaf 100644
--- a/releases/weekly/specs/amd64/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/amd64/installcd-stage2-minimal.spec
@@ -80,7 +80,6 @@ boot/kernel/gentoo/packages:
 	app-accessibility/espeakup
 	media-libs/alsa-oss
 	media-sound/alsa-utils
-	net-dialup/globespan-adsl
 
 	sys-apps/pcmciautils
 	sys-kernel/linux-firmware

diff --git a/releases/weekly/specs/amd64/livecd-stage2.spec b/releases/weekly/specs/amd64/livecd-stage2.spec
index 5a22e60f..4b366e70 100644
--- a/releases/weekly/specs/amd64/livecd-stage2.spec
+++ b/releases/weekly/specs/amd64/livecd-stage2.spec
@@ -31,7 +31,6 @@ boot/kernel/gentoo/packages:
 #	net-dialup/fcdsl
 ### Masked (~amd64)
 #	net-dialup/fritzcapi
-	net-dialup/globespan-adsl
 ### Masked (~amd64)
 #	net-dialup/slmodem
 	net-misc/br2684ctl

diff --git a/releases/weekly/specs/amd64/livedvd-stage2.spec b/releases/weekly/specs/amd64/livedvd-stage2.spec
index 666ef200..45f5248b 100644
--- a/releases/weekly/specs/amd64/livedvd-stage2.spec
+++ b/releases/weekly/specs/amd64/livedvd-stage2.spec
@@ -32,7 +32,6 @@ boot/kernel/gentoo/packages:
 #	net-dialup/fcdsl
 ### Masked (~amd64)
 #	net-dialup/fritzcapi
-	net-dialup/globespan-adsl
 ### Masked (~amd64)
 #	net-dialup/slmodem
 	net-misc/br2684ctl

diff --git a/releases/weekly/specs/x86/hardened/admincd-stage2.spec b/releases/weekly/specs/x86/hardened/admincd-stage2.spec
index f2dfd206..c945c9bc 100644
--- a/releases/weekly/specs/x86/hardened/admincd-stage2.spec
+++ b/releases/weekly/specs/x86/hardened/admincd-stage2.spec
@@ -80,7 +80,6 @@ boot/kernel/gentoo/packages:
 	app-accessibility/espeakup
 	media-libs/alsa-oss
 	media-sound/alsa-utils
-	net-dialup/globespan-adsl
 
 	sys-apps/pcmciautils
 	sys-kernel/linux-firmware

diff --git a/releases/weekly/specs/x86/hardened/installcd-stage2-minimal.spec b/releases/weekly/specs/x86/hardened/installcd-stage2-minimal.spec
index 8d8f312f..933d6c17 100644
--- a/releases/weekly/specs/x86/hardened/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/x86/hardened/installcd-stage2-minimal.spec
@@ -78,7 +78,6 @@ boot/kernel/gentoo/packages:
 	media-libs/alsa-oss
 	media-sound/alsa-utils
 	net-dialup/slmodem
-	net-dialup/globespan-adsl
 	net-wireless/hostap-utils
 #	net-dialup/fritzcapi
 #	net-dialup/fcdsl

diff --git a/releases/weekly/specs/x86/i686/livecd-stage2.spec b/releases/weekly/specs/x86/i686/livecd-stage2.spec
index baa769ea..07b69f21 100644
--- a/releases/weekly/specs/x86/i686/livecd-stage2.spec
+++ b/releases/weekly/specs/x86/i686/livecd-stage2.spec
@@ -30,7 +30,6 @@ boot/kernel/gentoo/packages:
 	media-sound/alsa-utils
 #	net-dialup/fcdsl
 #	net-dialup/fritzcapi
-	net-dialup/globespan-adsl
 ### Compile failure w/ 2.6.24
 #	net-dialup/slmodem
 	net-misc/br2684ctl

diff --git a/releases/weekly/specs/x86/i686/livedvd-stage2.spec b/releases/weekly/specs/x86/i686/livedvd-stage2.spec
index f906ce31..e864ee7b 100644
--- a/releases/weekly/specs/x86/i686/livedvd-stage2.spec
+++ b/releases/weekly/specs/x86/i686/livedvd-stage2.spec
@@ -31,7 +31,6 @@ boot/kernel/gentoo/packages:
 	media-sound/alsa-utils
 #	net-dialup/fcdsl
 #	net-dialup/fritzcapi
-	net-dialup/globespan-adsl
 ### Compile failure w/ 2.6.24
 #	net-dialup/slmodem
 	net-misc/br2684ctl

diff --git a/releases/weekly/specs/x86/installcd-stage2-minimal.spec b/releases/weekly/specs/x86/installcd-stage2-minimal.spec
index e2b81b74..f0954007 100644
--- a/releases/weekly/specs/x86/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/x86/installcd-stage2-minimal.spec
@@ -80,7 +80,6 @@ boot/kernel/gentoo/packages:
 	app-accessibility/espeakup
 	media-libs/alsa-oss
 	media-sound/alsa-utils
-	net-dialup/globespan-adsl
 	net-wireless/hostap-utils
 
 	sys-apps/pcmciautils


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/releng:master commit in: releases/weekly/specs/amd64/hardened/, releases/weekly/specs/amd64/, ...
@ 2018-07-11 12:43 Ben Kohler
  0 siblings, 0 replies; 3+ messages in thread
From: Ben Kohler @ 2018-07-11 12:43 UTC (permalink / raw
  To: gentoo-commits

commit:     6b6b0d68acd9fc10e48defa5c50ea046c13cb99b
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 11 12:41:36 2018 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Jul 11 12:41:36 2018 +0000
URL:        https://gitweb.gentoo.org/proj/releng.git/commit/?id=6b6b0d68

specs: remove rfkill as it's been absorbed into util-linux

Remove rfkill on arches where >util-linux-2.31 is stable, as these newer
versions now include rfkill (and block the rfkill pkg)

 releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec | 1 -
 releases/weekly/specs/amd64/hardened/admincd-stage1.spec         | 1 -
 releases/weekly/specs/amd64/installcd-stage1.spec                | 1 -
 releases/weekly/specs/sparc/sparc64/installcd-stage1.spec        | 1 -
 releases/weekly/specs/x86/hardened/admincd-stage1.spec           | 1 -
 releases/weekly/specs/x86/installcd-stage1.spec                  | 1 -
 6 files changed, 6 deletions(-)

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec b/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec
index 6f74d132..af42ad72 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage1-selinux.spec
@@ -121,7 +121,6 @@ livecd/packages:
 ### Masked (~amd64)
 #	net-wireless/bcm43xx-fwcutter
 	net-wireless/iw
-	net-wireless/rfkill
 	net-wireless/wireless-tools
 	net-wireless/wpa_supplicant
 	sys-apps/arrayprobe

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage1.spec b/releases/weekly/specs/amd64/hardened/admincd-stage1.spec
index 163cc7f2..d0b8bc3e 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage1.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage1.spec
@@ -124,7 +124,6 @@ livecd/packages:
 ### Masked (~amd64)
 #	net-wireless/bcm43xx-fwcutter
 	net-wireless/iw
-	net-wireless/rfkill
 	net-wireless/wireless-tools
 	net-wireless/wpa_supplicant
 	sys-apps/arrayprobe

diff --git a/releases/weekly/specs/amd64/installcd-stage1.spec b/releases/weekly/specs/amd64/installcd-stage1.spec
index 59cf0d85..494a577f 100644
--- a/releases/weekly/specs/amd64/installcd-stage1.spec
+++ b/releases/weekly/specs/amd64/installcd-stage1.spec
@@ -63,7 +63,6 @@ livecd/packages:
 ### Masked (~keywords)
 #	net-wireless/bcm43xx-fwcutter
 	net-wireless/iw
-	net-wireless/rfkill
 	net-wireless/wireless-tools
 	net-wireless/wpa_supplicant
 	sys-apps/busybox

diff --git a/releases/weekly/specs/sparc/sparc64/installcd-stage1.spec b/releases/weekly/specs/sparc/sparc64/installcd-stage1.spec
index 8118574a..6175f297 100644
--- a/releases/weekly/specs/sparc/sparc64/installcd-stage1.spec
+++ b/releases/weekly/specs/sparc/sparc64/installcd-stage1.spec
@@ -66,7 +66,6 @@ livecd/packages:
 #	net-proxy/ntlmaps
 	net-proxy/tsocks
 #	net-wireless/iw
-#	net-wireless/rfkill
 #	net-wireless/wireless-tools
 #	net-wireless/wpa_supplicant
 	sys-apps/busybox

diff --git a/releases/weekly/specs/x86/hardened/admincd-stage1.spec b/releases/weekly/specs/x86/hardened/admincd-stage1.spec
index 92920df3..75ef5d01 100644
--- a/releases/weekly/specs/x86/hardened/admincd-stage1.spec
+++ b/releases/weekly/specs/x86/hardened/admincd-stage1.spec
@@ -124,7 +124,6 @@ livecd/packages:
 ### Masked (~amd64)
 #	net-wireless/bcm43xx-fwcutter
 	net-wireless/iw
-	net-wireless/rfkill
 	net-wireless/wireless-tools
 	net-wireless/wpa_supplicant
 	sys-apps/arrayprobe

diff --git a/releases/weekly/specs/x86/installcd-stage1.spec b/releases/weekly/specs/x86/installcd-stage1.spec
index b5a4807e..ebf9c0fe 100644
--- a/releases/weekly/specs/x86/installcd-stage1.spec
+++ b/releases/weekly/specs/x86/installcd-stage1.spec
@@ -61,7 +61,6 @@ livecd/packages:
 ### Masked (~keywords)
 #	net-wireless/bcm43xx-fwcutter
 	net-wireless/iw
-	net-wireless/rfkill
 	net-wireless/wireless-tools
 	net-wireless/wpa_supplicant
 	sys-apps/busybox


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-07-11 12:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-04 16:41 [gentoo-commits] proj/releng:master commit in: releases/weekly/specs/amd64/hardened/, releases/weekly/specs/amd64/, Robin H. Johnson
  -- strict thread matches above, loose matches on Subject: below --
2018-07-11 12:43 Ben Kohler
2015-12-18  1:56 Matt Thode

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox