diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-03-06 15:49:56 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-03-06 15:49:56 +0200 |
commit | 84f85dc9cb38af2d0f9a68691acdf0dac955af94 (patch) | |
tree | 27abf2399c352902eab40f709cfa8801c1918e70 /bootstrap | |
parent | 46f170dfb0d6588bc37e02b81193ce44b438d296 (diff) |
Update to latest Debian testing for 0.10.0 series
systemd 240-6
qemu-system-x86 3.1+dfsg-4
linux-image-amd64 4.19+102
g++ 8.2.0-2
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -43,31 +43,32 @@ root="$btrfs/$id/buildos" # - systemd-container seems to be required by host systemd-nspawn. # - not installing linux-image-amd64 since building custom below # -release="unstable" +release="testing" components="main,contrib,non-free" mirror="http://deb.debian.org/debian/" #mirror="https://deb.debian.org/debian/" base_pkgs="locales,klibc-utils,sudo,systemd-container,udev" -base_pkgs+=",kmod,linux-base,firmware-linux-free,irqbalance,pciutils,usbutils" +base_pkgs+=",kmod,linux-base,firmware-linux-free,irqbalance" base_pkgs+=",intel-microcode,amd64-microcode" +base_pkgs+=",pciutils,usbutils,dmidecode" base_pkgs+=",hdparm,btrfs-progs" -base_pkgs+=",lm-sensors" +base_pkgs+=",lm-sensors,smartmontools" base_pkgs+=",net-tools,iproute2,iptables,isc-dhcp-client" base_pkgs+=",ifupdown,bridge-utils,dnsmasq,ntp,postfix" -base_pkgs+=",iputils-ping,wget,curl" +base_pkgs+=",iputils-ping,wget,curl,ca-certificates" base_pkgs+=",openssh-client,openssh-server" base_pkgs+=",tftp-hpa,tftpd-hpa" base_pkgs+=",bzip2,xz-utils" -base_pkgs+=",less,nano" +base_pkgs+=",less,nano,time" base_pkgs+=",qemu-kvm,qemu-utils,socat" base_pkgs+=",g++,make,pkg-config" -extra_pkgs="ca-certificates,time,dmidecode,smartmontools" +extra_pkgs="" owd="$(pwd)" trap "{ cd '$owd'; exit 1; }" ERR @@ -382,6 +383,8 @@ cd linux # Adjust configuration. # echo 'CONFIG_SYSTEM_TRUSTED_KEYS=""' >>.config +echo 'CONFIG_BUILD_SALT=""' >>.config +echo 'CONFIG_MODULE_SIG=n' >>.config # Adjust kernel command line size limit. # |