From 4f1b1330959effa5ecf16e7b65ee228f1a53b90e Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Thu, 26 Jul 2018 17:09:45 -0300 Subject: [configs/releng] add wireless-regdb to airootfs Requested at FS#59434 --- configs/releng/packages.x86_64 | 1 + 1 file changed, 1 insertion(+) diff --git a/configs/releng/packages.x86_64 b/configs/releng/packages.x86_64 index bae8238..45798cc 100644 --- a/configs/releng/packages.x86_64 +++ b/configs/releng/packages.x86_64 @@ -58,6 +58,7 @@ usb_modeswitch vim-minimal vpnc wget +wireless-regdb wireless_tools wpa_actiond wvdial -- cgit v1.2.3-54-g00ecf From 3a95b7cafbffca260e6ff97728b6384639dd1ae9 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Fri, 6 Jul 2018 10:15:36 +0200 Subject: generate pkglist with query (not sync) operation Using the sync operation with list option fails with --sysroot when signed database files are around. Instead use the query operation, which uses the local databases of installed pakages only. The only downside is that we do no longer record the originating repository. Signed-off-by: Christian Hesse --- archiso/mkarchiso | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/archiso/mkarchiso b/archiso/mkarchiso index cc66df4..4d4db50 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -266,8 +266,7 @@ command_pkglist () { _show_config pkglist _msg_info "Creating a list of installed packages on live-enviroment..." - pacman -Sl --sysroot "${work_dir}/airootfs" | \ - awk '/\[installed\]$/ {print $1 "/" $2 "-" $3}' > \ + pacman -Q --sysroot "${work_dir}/airootfs" > \ "${work_dir}/iso/${install_dir}/pkglist.${arch}.txt" _msg_info "Done!" -- cgit v1.2.3-54-g00ecf From d4a9ba4b785a2ebb0218057e7b25d7dbcc1d4b68 Mon Sep 17 00:00:00 2001 From: Gerardo Exequiel Pozzi Date: Thu, 26 Jul 2018 17:17:08 -0300 Subject: prepare release Signed-off-by: Gerardo Exequiel Pozzi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e850910..2f30cc0 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -V=36 +V=37 INSTALL_FILES=$(wildcard archiso/initcpio/install/*) HOOKS_FILES=$(wildcard archiso/initcpio/hooks/*) -- cgit v1.2.3-54-g00ecf