From: "Thomas Deutschmann" <whissi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/genkernel:master commit in: /
Date: Mon, 15 Jul 2019 23:28:01 +0000 (UTC) [thread overview]
Message-ID: <1563233251.204b9e97920110d267cc28132d76e941ca177b13.whissi@gentoo> (raw)
commit: 204b9e97920110d267cc28132d76e941ca177b13
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 15 23:21:57 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 23:27:31 2019 +0000
URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=204b9e97
Adjust LOGLEVEL
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
gen_cmdline.sh | 228 +++++++++++++++++++++++++++----------------------------
gen_funcs.sh | 6 +-
gen_initramfs.sh | 2 +-
3 files changed, 118 insertions(+), 118 deletions(-)
diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index 9f1b7cf..a7b35a8 100755
--- a/gen_cmdline.sh
+++ b/gen_cmdline.sh
@@ -252,98 +252,98 @@ parse_cmdline() {
case "$*" in
--cross-compile=*)
CMD_CROSS_COMPILE="${*#*=}"
- print_info 2 "CMD_CROSS_COMPILE: ${CMD_CROSS_COMPILE}"
+ print_info 3 "CMD_CROSS_COMPILE: ${CMD_CROSS_COMPILE}"
;;
--kernel-cc=*)
CMD_KERNEL_CC="${*#*=}"
- print_info 2 "CMD_KERNEL_CC: ${CMD_KERNEL_CC}"
+ print_info 3 "CMD_KERNEL_CC: ${CMD_KERNEL_CC}"
;;
--kernel-ld=*)
CMD_KERNEL_LD="${*#*=}"
- print_info 2 "CMD_KERNEL_LD: ${CMD_KERNEL_LD}"
+ print_info 3 "CMD_KERNEL_LD: ${CMD_KERNEL_LD}"
;;
--kernel-as=*)
CMD_KERNEL_AS="${*#*=}"
- print_info 2 "CMD_KERNEL_AS: ${CMD_KERNEL_AS}"
+ print_info 3 "CMD_KERNEL_AS: ${CMD_KERNEL_AS}"
;;
--kernel-make=*)
CMD_KERNEL_MAKE="${*#*=}"
- print_info 2 "CMD_KERNEL_MAKE: ${CMD_KERNEL_MAKE}"
+ print_info 3 "CMD_KERNEL_MAKE: ${CMD_KERNEL_MAKE}"
;;
--kernel-target=*)
KERNEL_MAKE_DIRECTIVE_OVERRIDE="${*#*=}"
- print_info 2 "KERNEL_MAKE_DIRECTIVE_OVERRIDE: ${KERNEL_MAKE_DIRECTIVE_OVERRIDE}"
+ print_info 3 "KERNEL_MAKE_DIRECTIVE_OVERRIDE: ${KERNEL_MAKE_DIRECTIVE_OVERRIDE}"
;;
--kernel-binary=*)
KERNEL_BINARY_OVERRIDE="${*#*=}"
- print_info 2 "KERNEL_BINARY_OVERRIDE: ${KERNEL_BINARY_OVERRIDE}"
+ print_info 3 "KERNEL_BINARY_OVERRIDE: ${KERNEL_BINARY_OVERRIDE}"
;;
--kernel-outputdir=*)
CMD_KERNEL_OUTPUTDIR="${*#*=}"
- print_info 2 "CMD_KERNEL_OUTPUTDIR: ${CMD_KERNEL_OUTPUTDIR}"
+ print_info 3 "CMD_KERNEL_OUTPUTDIR: ${CMD_KERNEL_OUTPUTDIR}"
;;
--utils-cc=*)
CMD_UTILS_CC="${*#*=}"
- print_info 2 "CMD_UTILS_CC: ${CMD_UTILS_CC}"
+ print_info 3 "CMD_UTILS_CC: ${CMD_UTILS_CC}"
;;
--utils-cflags=*)
CMD_UTILS_CFLAGS="${*#*=}"
- print_info 2 "CMD_UTILS_CFLAGS: ${CMD_UTILS_CFLAGS}"
+ print_info 3 "CMD_UTILS_CFLAGS: ${CMD_UTILS_CFLAGS}"
;;
--utils-ld=*)
CMD_UTILS_LD="${*#*=}"
- print_info 2 "CMD_UTILS_LD: ${CMD_UTILS_LD}"
+ print_info 3 "CMD_UTILS_LD: ${CMD_UTILS_LD}"
;;
--utils-as=*)
CMD_UTILS_AS="${*#*=}"
- print_info 2 "CMD_UTILS_AS: ${CMD_UTILS_AS}"
+ print_info 3 "CMD_UTILS_AS: ${CMD_UTILS_AS}"
;;
--utils-make=*)
CMD_UTILS_MAKE="${*#*=}"
- print_info 2 "CMD_UTILS_MAKE: ${CMD_UTILS_MAKE}"
+ print_info 3 "CMD_UTILS_MAKE: ${CMD_UTILS_MAKE}"
;;
--makeopts=*)
CMD_MAKEOPTS="${*#*=}"
- print_info 2 "CMD_MAKEOPTS: ${CMD_MAKEOPTS}"
+ print_info 3 "CMD_MAKEOPTS: ${CMD_MAKEOPTS}"
;;
--mountboot|--no-mountboot)
CMD_MOUNTBOOT=$(parse_optbool "$*")
- print_info 2 "CMD_MOUNTBOOT: ${CMD_MOUNTBOOT}"
+ print_info 3 "CMD_MOUNTBOOT: ${CMD_MOUNTBOOT}"
;;
--bootdir=*)
CMD_BOOTDIR="${*#*=}"
- print_info 2 "CMD_BOOTDIR: ${CMD_BOOTDIR}"
+ print_info 3 "CMD_BOOTDIR: ${CMD_BOOTDIR}"
;;
--modprobedir=*)
CMD_MODPROBEDIR="${*#*=}"
- print_info 2 "CMD_MODPROBEDIR: ${CMD_MODPROBEDIR}"
+ print_info 3 "CMD_MODPROBEDIR: ${CMD_MODPROBEDIR}"
;;
--do-keymap-auto)
CMD_DOKEYMAPAUTO="yes"
CMD_KEYMAP="yes"
- print_info 2 "CMD_DOKEYMAPAUTO: ${CMD_DOKEYMAPAUTO}"
+ print_info 3 "CMD_DOKEYMAPAUTO: ${CMD_DOKEYMAPAUTO}"
;;
--keymap|--no-keymap)
CMD_KEYMAP=$(parse_optbool "$*")
- print_info 2 "CMD_KEYMAP: ${CMD_KEYMAP}"
+ print_info 3 "CMD_KEYMAP: ${CMD_KEYMAP}"
;;
--bcache|--no-bcache)
CMD_BCACHE=$(parse_optbool "$*")
- print_info 2 "CMD_BCACHE: ${CMD_BCACHE}"
+ print_info 3 "CMD_BCACHE: ${CMD_BCACHE}"
;;
--lvm|--no-lvm)
CMD_LVM=$(parse_optbool "$*")
- print_info 2 "CMD_LVM: ${CMD_LVM}"
+ print_info 3 "CMD_LVM: ${CMD_LVM}"
;;
--lvm2|--no-lvm2)
CMD_LVM=$(parse_optbool "$*")
- print_info 2 "CMD_LVM: ${CMD_LVM}"
+ print_info 3 "CMD_LVM: ${CMD_LVM}"
echo
print_warning 1 "Please use --lvm, as --lvm2 is deprecated."
;;
--mdadm|--no-mdadm)
CMD_MDADM=$(parse_optbool "$*")
- print_info 2 "CMD_MDADM: $CMD_MDADM"
+ print_info 3 "CMD_MDADM: $CMD_MDADM"
if isTrue "${CMD_MDADM}" && [ ! -e /sbin/mdadm ]
then
print_warning 'Warning: --mdadm generally requires sys-fs/mdadm present on the host system'
@@ -351,70 +351,70 @@ parse_cmdline() {
;;
--mdadm-config=*)
CMD_MDADM_CONFIG="${*#*=}"
- print_info 2 "CMD_MDADM_CONFIG: $CMD_MDADM_CONFIG"
+ print_info 3 "CMD_MDADM_CONFIG: $CMD_MDADM_CONFIG"
;;
--busybox|--no-busybox)
CMD_BUSYBOX=$(parse_optbool "$*")
- print_info 2 "CMD_BUSYBOX: ${CMD_BUSYBOX}"
+ print_info 3 "CMD_BUSYBOX: ${CMD_BUSYBOX}"
;;
--microcode|--no-microcode)
case $(parse_optbool "$*") in
no) CMD_MICROCODE='no' ;;
yes) CMD_MICROCODE='all' ;;
esac
- print_info 2 "CMD_MICROCODE: ${CMD_MICROCODE}"
+ print_info 3 "CMD_MICROCODE: ${CMD_MICROCODE}"
;;
--microcode=*)
CMD_MICROCODE="${*#*=}"
- print_info 2 "CMD_MICROCODE: $CMD_MICROCODE"
+ print_info 3 "CMD_MICROCODE: $CMD_MICROCODE"
;;
--microcode-initramfs|--no-microcode-initramfs)
CMD_MICROCODE_INITRAMFS=$(parse_optbool "$*")
- print_info 2 "CMD_MICROCODE_INITRAMFS: ${CMD_MICROCODE_INITRAMFS}"
+ print_info 3 "CMD_MICROCODE_INITRAMFS: ${CMD_MICROCODE_INITRAMFS}"
;;
--nfs|--no-nfs)
CMD_NFS=$(parse_optbool "$*")
- print_info 2 "CMD_NFS: ${CMD_NFS}"
+ print_info 3 "CMD_NFS: ${CMD_NFS}"
;;
--unionfs|--no-unionfs)
CMD_UNIONFS=$(parse_optbool "$*")
- print_info 2 "CMD_UNIONFS: ${CMD_UNIONFS}"
+ print_info 3 "CMD_UNIONFS: ${CMD_UNIONFS}"
;;
--netboot|--no-netboot)
CMD_NETBOOT=$(parse_optbool "$*")
- print_info 2 "CMD_NETBOOT: ${CMD_NETBOOT}"
+ print_info 3 "CMD_NETBOOT: ${CMD_NETBOOT}"
;;
--real-root=*)
CMD_REAL_ROOT="${*#*=}"
- print_info 2 "CMD_REAL_ROOT: ${CMD_REAL_ROOT}"
+ print_info 3 "CMD_REAL_ROOT: ${CMD_REAL_ROOT}"
;;
--dmraid|--no-dmraid)
CMD_DMRAID=$(parse_optbool "$*")
- print_info 2 "CMD_DMRAID: ${CMD_DMRAID}"
+ print_info 3 "CMD_DMRAID: ${CMD_DMRAID}"
;;
--e2fsprogs|--no-e2fsprogs)
CMD_E2FSPROGS=$(parse_optbool "$*")
- print_info 2 "CMD_E2FSPROGS: ${CMD_E2FSPROGS}"
+ print_info 3 "CMD_E2FSPROGS: ${CMD_E2FSPROGS}"
;;
--xfsprogs|--no-xfsprogs)
CMD_XFSPROGS=$(parse_optbool "$*")
- print_info 2 "CMD_XFSPROGS: ${CMD_XFSPROGS}"
+ print_info 3 "CMD_XFSPROGS: ${CMD_XFSPROGS}"
;;
--zfs|--no-zfs)
CMD_ZFS=$(parse_optbool "$*")
- print_info 2 "CMD_ZFS: ${CMD_ZFS}"
+ print_info 3 "CMD_ZFS: ${CMD_ZFS}"
;;
--btrfs|--no-btrfs)
CMD_BTRFS=$(parse_optbool "$*")
- print_info 2 "CMD_BTRFS: ${CMD_BTRFS}"
+ print_info 3 "CMD_BTRFS: ${CMD_BTRFS}"
;;
--virtio|--no-virtio)
CMD_VIRTIO=$(parse_optbool "$*")
- print_info 2 "CMD_VIRTIO: ${CMD_VIRTIO}"
+ print_info 3 "CMD_VIRTIO: ${CMD_VIRTIO}"
;;
--multipath|--no-multipath)
CMD_MULTIPATH=$(parse_optbool "$*")
- print_info 2 "CMD_MULTIPATH: ${CMD_MULTIPATH}"
+ print_info 3 "CMD_MULTIPATH: ${CMD_MULTIPATH}"
;;
--bootloader=*)
CMD_BOOTLOADER="${*#*=}"
@@ -426,27 +426,27 @@ parse_cmdline() {
echo "Error: Bootloader '${CMD_BOOTLOADER}' is unsupported."
exit 1
esac
- print_info 2 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
+ print_info 3 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
;;
--no-bootloader)
CMD_BOOTLOADER="no"
- print_info 2 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
+ print_info 3 "CMD_BOOTLOADER: ${CMD_BOOTLOADER}"
;;
--iscsi|--no-iscsi)
CMD_ISCSI=$(parse_optbool "$*")
- print_info 2 "CMD_ISCSI: ${CMD_ISCSI}"
+ print_info 3 "CMD_ISCSI: ${CMD_ISCSI}"
;;
--hyperv|--no-hyperv)
CMD_HYPERV=$(parse_optbool "$*")
- print_info 2 "CMD_HYPERV: ${CMD_HYPERV}"
+ print_info 3 "CMD_HYPERV: ${CMD_HYPERV}"
;;
--ssh|--no-ssh)
CMD_SSH=$(parse_optbool "$*")
- print_info 2 "CMD_SSH: ${CMD_SSH}"
+ print_info 3 "CMD_SSH: ${CMD_SSH}"
;;
--ssh-authorized-keys-file=*)
CMD_SSH_AUTHORIZED_KEYS_FILE="${*#*=}"
- print_info 2 "CMD_SSH_AUTHORIZED_KEYS_FILE: ${CMD_SSH_AUTHORIZED_KEYS_FILE}"
+ print_info 3 "CMD_SSH_AUTHORIZED_KEYS_FILE: ${CMD_SSH_AUTHORIZED_KEYS_FILE}"
;;
--ssh-host-keys=*)
CMD_SSH_HOST_KEYS="${*#*=}"
@@ -455,16 +455,16 @@ parse_cmdline() {
echo "Error: --ssh-host-keys value '${CMD_SSH_HOST_KEYS}' is unsupported."
exit 1
fi
- print_info 2 "CMD_SSH_HOST_KEYS: ${CMD_SSH_HOST_KEYS}"
+ print_info 3 "CMD_SSH_HOST_KEYS: ${CMD_SSH_HOST_KEYS}"
;;
--strace|--no-strace)
CMD_STRACE=$(parse_optbool "$*")
- print_info 2 "CMD_STRACE: ${CMD_STRACE}"
+ print_info 3 "CMD_STRACE: ${CMD_STRACE}"
;;
--loglevel=*)
CMD_LOGLEVEL="${*#*=}"
LOGLEVEL="${CMD_LOGLEVEL}"
- print_info 2 "CMD_LOGLEVEL: ${CMD_LOGLEVEL}"
+ print_info 3 "CMD_LOGLEVEL: ${CMD_LOGLEVEL}"
;;
--menuconfig)
TERM_LINES=$(stty -a | head -n 1 | cut -d\ -f5 | cut -d\; -f1)
@@ -476,11 +476,11 @@ parse_cmdline() {
exit 1
fi
CMD_MENUCONFIG="yes"
- print_info 2 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
+ print_info 3 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
;;
--no-menuconfig)
CMD_MENUCONFIG="no"
- print_info 2 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
+ print_info 3 "CMD_MENUCONFIG: ${CMD_MENUCONFIG}"
;;
--nconfig)
TERM_LINES=$(stty -a | head -n 1 | cut -d\ -f5 | cut -d\; -f1)
@@ -492,97 +492,97 @@ parse_cmdline() {
exit 1
fi
CMD_NCONFIG="yes"
- print_info 2 "CMD_NCONFIG: ${CMD_NCONFIG}"
+ print_info 3 "CMD_NCONFIG: ${CMD_NCONFIG}"
;;
--no-nconfig)
CMD_NCONFIG="no"
- print_info 2 "CMD_NCONFIG: ${CMD_NCONFIG}"
+ print_info 3 "CMD_NCONFIG: ${CMD_NCONFIG}"
;;
--gconfig|--no-gconfig)
CMD_GCONFIG=$(parse_optbool "$*")
- print_info 2 "CMD_GCONFIG: ${CMD_GCONFIG}"
+ print_info 3 "CMD_GCONFIG: ${CMD_GCONFIG}"
;;
--xconfig|--no-xconfig)
CMD_XCONFIG=$(parse_optbool "$*")
- print_info 2 "CMD_XCONFIG: ${CMD_XCONFIG}"
+ print_info 3 "CMD_XCONFIG: ${CMD_XCONFIG}"
;;
--save-config|--no-save-config)
CMD_SAVE_CONFIG=$(parse_optbool "$*")
- print_info 2 "CMD_SAVE_CONFIG: ${CMD_SAVE_CONFIG}"
+ print_info 3 "CMD_SAVE_CONFIG: ${CMD_SAVE_CONFIG}"
;;
--mrproper|--no-mrproper)
CMD_MRPROPER=$(parse_optbool "$*")
- print_info 2 "CMD_MRPROPER: ${CMD_MRPROPER}"
+ print_info 3 "CMD_MRPROPER: ${CMD_MRPROPER}"
;;
--clean|--no-clean)
CMD_CLEAN=$(parse_optbool "$*")
- print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
+ print_info 3 "CMD_CLEAN: ${CMD_CLEAN}"
;;
--oldconfig|--no-oldconfig)
CMD_OLDCONFIG=$(parse_optbool "$*")
isTrue "${CMD_OLDCONFIG}" && CMD_CLEAN="no"
- print_info 2 "CMD_CLEAN: ${CMD_CLEAN}"
- print_info 2 "CMD_OLDCONFIG: ${CMD_OLDCONFIG}"
+ print_info 3 "CMD_CLEAN: ${CMD_CLEAN}"
+ print_info 3 "CMD_OLDCONFIG: ${CMD_OLDCONFIG}"
;;
--gensplash=*)
CMD_SPLASH="yes"
SPLASH_THEME="${*#*=}"
- print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
- print_info 2 "SPLASH_THEME: ${SPLASH_THEME}"
+ print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
+ print_info 3 "SPLASH_THEME: ${SPLASH_THEME}"
echo
print_warning 1 "Please use --splash, as --gensplash is deprecated."
;;
--gensplash|--no-gensplash)
CMD_SPLASH=$(parse_optbool "$*")
SPLASH_THEME='default'
- print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
+ print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
echo
print_warning 1 "Please use --splash, as --gensplash is deprecated."
;;
--splash=*)
CMD_SPLASH="yes"
SPLASH_THEME="${*#*=}"
- print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
- print_info 2 "SPLASH_THEME: ${SPLASH_THEME}"
+ print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
+ print_info 3 "SPLASH_THEME: ${SPLASH_THEME}"
;;
--splash|--no-splash)
CMD_SPLASH=$(parse_optbool "$*")
SPLASH_THEME='default'
- print_info 2 "CMD_SPLASH: ${CMD_SPLASH}"
+ print_info 3 "CMD_SPLASH: ${CMD_SPLASH}"
;;
--gensplash-res=*)
SPLASH_RES="${*#*=}"
- print_info 2 "SPLASH_RES: ${SPLASH_RES}"
+ print_info 3 "SPLASH_RES: ${SPLASH_RES}"
echo
print_warning 1 "Please use --splash-res, as --gensplash-res is deprecated."
;;
--splash-res=*)
SPLASH_RES="${*#*=}"
- print_info 2 "SPLASH_RES: ${SPLASH_RES}"
+ print_info 3 "SPLASH_RES: ${SPLASH_RES}"
;;
--install|--no-install)
CMD_INSTALL=$(parse_optbool "$*")
- print_info 2 "CMD_INSTALL: ${CMD_INSTALL}"
+ print_info 3 "CMD_INSTALL: ${CMD_INSTALL}"
;;
--ramdisk-modules|--no-ramdisk-modules)
CMD_RAMDISKMODULES=$(parse_optbool "$*")
- print_info 2 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
+ print_info 3 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
;;
--all-ramdisk-modules|--no-all-ramdisk-modules)
CMD_ALLRAMDISKMODULES=$(parse_optbool "$*")
- print_info 2 "CMD_ALLRAMDISKMODULES: ${CMD_ALLRAMDISKMODULES}"
+ print_info 3 "CMD_ALLRAMDISKMODULES: ${CMD_ALLRAMDISKMODULES}"
;;
--module-rebuild|--no-module-rebuild)
CMD_MODULEREBUILD=$(parse_optbool "$*")
- print_info 2 "CMD_MODULEREBUILD: ${CMD_MODULEREBUILD}"
+ print_info 3 "CMD_MODULEREBUILD: ${CMD_MODULEREBUILD}"
;;
--callback=*)
CMD_CALLBACK="${*#*=}"
- print_info 2 "CMD_CALLBACK: ${CMD_CALLBACK}/$*"
+ print_info 3 "CMD_CALLBACK: ${CMD_CALLBACK}/$*"
;;
--static|--no-static)
CMD_STATIC=$(parse_optbool "$*")
- print_info 2 "CMD_STATIC: ${CMD_STATIC}"
+ print_info 3 "CMD_STATIC: ${CMD_STATIC}"
;;
--tempdir=*)
TMPDIR="${*#*=}"
@@ -592,12 +592,12 @@ parse_cmdline() {
fi
TEMP=$(mktemp -d -p "${TMPDIR}" gk.XXXXXXXX 2>/dev/null)
[ -z "${TEMP}" ] && gen_die "mktemp failed!"
- print_info 2 "TMPDIR: ${TMPDIR}"
- print_info 2 "TEMP: ${TEMP}"
+ print_info 3 "TMPDIR: ${TMPDIR}"
+ print_info 3 "TEMP: ${TEMP}"
;;
--postclear|--no-postclear)
CMD_POSTCLEAR=$(parse_optbool "$*")
- print_info 2 "CMD_POSTCLEAR: ${CMD_POSTCLEAR}"
+ print_info 3 "CMD_POSTCLEAR: ${CMD_POSTCLEAR}"
;;
--color|--no-color)
CMD_COLOR=$(parse_optbool "$*")
@@ -607,139 +607,139 @@ parse_cmdline() {
else
NOCOLOR=true
fi
- print_info 2 "CMD_COLOR: ${CMD_COLOR}"
+ print_info 3 "CMD_COLOR: ${CMD_COLOR}"
set_color_vars
;;
--cleanup|--no-cleanup)
CMD_CLEANUP=$(parse_optbool "$*")
- print_info 2 "CMD_CLEANUP: ${CMD_CLEANUP}"
+ print_info 3 "CMD_CLEANUP: ${CMD_CLEANUP}"
;;
--logfile=*)
CMD_LOGFILE="${*#*=}"
- print_info 2 "CMD_LOGFILE: ${CMD_LOGFILE}"
+ print_info 3 "CMD_LOGFILE: ${CMD_LOGFILE}"
;;
--kerneldir=*)
CMD_KERNEL_DIR="${*#*=}"
- print_info 2 "CMD_KERNEL_DIR: ${CMD_KERNEL_DIR}"
+ print_info 3 "CMD_KERNEL_DIR: ${CMD_KERNEL_DIR}"
;;
--kernel-config=*)
CMD_KERNEL_CONFIG="${*#*=}"
- print_info 2 "CMD_KERNEL_CONFIG: ${CMD_KERNEL_CONFIG}"
+ print_info 3 "CMD_KERNEL_CONFIG: ${CMD_KERNEL_CONFIG}"
;;
--module-prefix=*)
CMD_INSTALL_MOD_PATH="${*#*=}"
- print_info 2 "CMD_INSTALL_MOD_PATH: ${CMD_INSTALL_MOD_PATH}"
+ print_info 3 "CMD_INSTALL_MOD_PATH: ${CMD_INSTALL_MOD_PATH}"
;;
--cachedir=*)
CACHE_DIR="${*#*=}"
- print_info 2 "CACHE_DIR: ${CACHE_DIR}"
+ print_info 3 "CACHE_DIR: ${CACHE_DIR}"
;;
--clear-cachedir|--no-clear-cachedir)
CMD_CLEAR_CACHEDIR=$(parse_optbool "$*")
- print_info 2 "CMD_CLEAR_CACHEDIR: ${CMD_CLEAR_CACHEDIR}"
+ print_info 3 "CMD_CLEAR_CACHEDIR: ${CMD_CLEAR_CACHEDIR}"
;;
--minkernpackage=*)
CMD_MINKERNPACKAGE="${*#*=}"
- print_info 2 "MINKERNPACKAGE: ${CMD_MINKERNPACKAGE}"
+ print_info 3 "MINKERNPACKAGE: ${CMD_MINKERNPACKAGE}"
;;
--modulespackage=*)
CMD_MODULESPACKAGE="${*#*=}"
- print_info 2 "MODULESPACKAGE: ${CMD_MODULESPACKAGE}"
+ print_info 3 "MODULESPACKAGE: ${CMD_MODULESPACKAGE}"
;;
--kerncache=*)
CMD_KERNCACHE="${*#*=}"
- print_info 2 "KERNCACHE: ${CMD_KERNCACHE}"
+ print_info 3 "KERNCACHE: ${CMD_KERNCACHE}"
;;
--kernname=*)
CMD_KERNNAME="${*#*=}"
- print_info 2 "KERNNAME: ${CMD_KERNNAME}"
+ print_info 3 "KERNNAME: ${CMD_KERNNAME}"
;;
--symlink|--no-symlink)
CMD_SYMLINK=$(parse_optbool "$*")
- print_info 2 "CMD_SYMLINK: ${CMD_SYMLINK}"
+ print_info 3 "CMD_SYMLINK: ${CMD_SYMLINK}"
;;
--kernel-sources|--no-kernel-sources)
CMD_KERNEL_SOURCES=$(parse_optbool "$*")
- print_info 2 "CMD_KERNEL_SOURCES: ${CMD_KERNEL_SOURCES}"
+ print_info 3 "CMD_KERNEL_SOURCES: ${CMD_KERNEL_SOURCES}"
;;
--initramfs-overlay=*)
CMD_INITRAMFS_OVERLAY="${*#*=}"
- print_info 2 "CMD_INITRAMFS_OVERLAY: ${CMD_INITRAMFS_OVERLAY}"
+ print_info 3 "CMD_INITRAMFS_OVERLAY: ${CMD_INITRAMFS_OVERLAY}"
;;
--linuxrc=*)
CMD_LINUXRC="${*#*=}"
- print_info 2 "CMD_LINUXRC: ${CMD_LINUXRC}"
+ print_info 3 "CMD_LINUXRC: ${CMD_LINUXRC}"
;;
--busybox-config=*)
CMD_BUSYBOX_CONFIG="${*#*=}"
- print_info 2 "CMD_BUSYBOX_CONFIG: ${CMD_BUSYBOX_CONFIG}"
+ print_info 3 "CMD_BUSYBOX_CONFIG: ${CMD_BUSYBOX_CONFIG}"
;;
--genzimage)
KERNEL_MAKE_DIRECTIVE_2='zImage.initrd'
KERNEL_BINARY_2='arch/powerpc/boot/zImage.initrd'
CMD_GENZIMAGE="yes"
- print_info 2 "CMD_GENZIMAGE: ${CMD_GENZIMAGE}"
+ print_info 3 "CMD_GENZIMAGE: ${CMD_GENZIMAGE}"
# ENABLE_PEGASOS_HACKS="yes"
-# print_info 2 "ENABLE_PEGASOS_HACKS: ${ENABLE_PEGASOS_HACKS}"
+# print_info 3 "ENABLE_PEGASOS_HACKS: ${ENABLE_PEGASOS_HACKS}"
;;
--disklabel|--no-disklabel)
CMD_DISKLABEL=$(parse_optbool "$*")
- print_info 2 "CMD_DISKLABEL: ${CMD_DISKLABEL}"
+ print_info 3 "CMD_DISKLABEL: ${CMD_DISKLABEL}"
;;
--luks|--no-luks)
CMD_LUKS=$(parse_optbool "$*")
- print_info 2 "CMD_LUKS: ${CMD_LUKS}"
+ print_info 3 "CMD_LUKS: ${CMD_LUKS}"
;;
--gpg|--no-gpg)
CMD_GPG=$(parse_optbool "$*")
- print_info 2 "CMD_GPG: ${CMD_GPG}"
+ print_info 3 "CMD_GPG: ${CMD_GPG}"
;;
--firmware|--no-firmware)
CMD_FIRMWARE=$(parse_optbool "$*")
- print_info 2 "CMD_FIRMWARE: ${CMD_FIRMWARE}"
+ print_info 3 "CMD_FIRMWARE: ${CMD_FIRMWARE}"
;;
--firmware-dir=*)
CMD_FIRMWARE_DIR="${*#*=}"
CMD_FIRMWARE="yes"
- print_info 2 "CMD_FIRMWARE_DIR: ${CMD_FIRMWARE_DIR}"
+ print_info 3 "CMD_FIRMWARE_DIR: ${CMD_FIRMWARE_DIR}"
;;
--firmware-files=*)
CMD_FIRMWARE_FILES="${*#*=}"
CMD_FIRMWARE="yes"
- print_info 2 "CMD_FIRMWARE_FILES: ${CMD_FIRMWARE_FILES}"
+ print_info 3 "CMD_FIRMWARE_FILES: ${CMD_FIRMWARE_FILES}"
;;
--firmware-install|--no-firmware-install)
CMD_FIRMWARE_INSTALL=$(parse_optbool "$*")
- print_info 2 "CMD_FIRMWARE_INSTALL: ${CMD_FIRMWARE_INSTALL}"
+ print_info 3 "CMD_FIRMWARE_INSTALL: ${CMD_FIRMWARE_INSTALL}"
;;
--integrated-initramfs|--no-integrated-initramfs)
CMD_INTEGRATED_INITRAMFS=$(parse_optbool "$*")
- print_info 2 "CMD_INTEGRATED_INITRAMFS=${CMD_INTEGRATED_INITRAMFS}"
+ print_info 3 "CMD_INTEGRATED_INITRAMFS=${CMD_INTEGRATED_INITRAMFS}"
;;
--wrap-initrd|--no-wrap-initrd)
CMD_WRAP_INITRD=$(parse_optbool "$*")
- print_info 2 "CMD_WRAP_INITRD=${CMD_WRAP_INITRD}"
+ print_info 3 "CMD_WRAP_INITRD=${CMD_WRAP_INITRD}"
;;
--compress-initramfs|--no-compress-initramfs)
CMD_COMPRESS_INITRD=$(parse_optbool "$*")
- print_info 2 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
+ print_info 3 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
;;
--compress-initrd|--no-compress-initrd)
CMD_COMPRESS_INITRD=$(parse_optbool "$*")
- print_info 2 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
+ print_info 3 "CMD_COMPRESS_INITRD=${CMD_COMPRESS_INITRD}"
echo
print_warning 1 "Please use --[no-]compress-initramfs, as --[no-]compress-initrd is deprecated."
;;
--compress-initramfs-type=*|--compress-initrd-type=*)
CMD_COMPRESS_INITRD_TYPE="${*#*=}"
- print_info 2 "CMD_COMPRESS_INITRD_TYPE: ${CMD_COMPRESS_INITRD_TYPE}"
+ print_info 3 "CMD_COMPRESS_INITRD_TYPE: ${CMD_COMPRESS_INITRD_TYPE}"
;;
--config=*)
- print_info 2 "CMD_GK_CONFIG: "${*#*=}""
+ print_info 3 "CMD_GK_CONFIG: "${*#*=}""
;;
--nice)
CMD_NICE=10
- print_info 2 "CMD_NICE: ${CMD_NICE}"
+ print_info 3 "CMD_NICE: ${CMD_NICE}"
;;
--nice=*)
CMD_NICE="${*#*=}"
@@ -748,19 +748,19 @@ parse_cmdline() {
echo 'Error: Illegal value specified for --nice= parameter.'
exit 1
fi
- print_info 2 "CMD_NICE: ${CMD_NICE}"
+ print_info 3 "CMD_NICE: ${CMD_NICE}"
;;
--no-nice)
CMD_NICE=0
- print_info 2 "CMD_NICE: ${CMD_NICE}"
+ print_info 3 "CMD_NICE: ${CMD_NICE}"
;;
--strip=*)
CMD_STRIP_TYPE=$(parse_opt "$*")
- print_info 2 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
+ print_info 3 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
;;
--no-strip)
CMD_STRIP_TYPE=none
- print_info 2 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
+ print_info 3 "CMD_STRIP_TYPE: ${CMD_STRIP_TYPE}"
;;
all)
BUILD_KERNEL="yes"
@@ -782,7 +782,7 @@ parse_cmdline() {
BUILD_MODULES="no"
BUILD_RAMDISK="no"
CMD_RAMDISKMODULES="no"
- print_info 2 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
+ print_info 3 "CMD_RAMDISKMODULES: ${CMD_RAMDISKMODULES}"
;;
--help)
longusage
diff --git a/gen_funcs.sh b/gen_funcs.sh
index caae87b..15548d3 100755
--- a/gen_funcs.sh
+++ b/gen_funcs.sh
@@ -1447,16 +1447,16 @@ kconfig_set_opt() {
local curropt=$(grep -E "^#? ?${optname}[ =].*$" "${kconfig}")
if [[ -z "${curropt}" ]]
then
- print_info 2 "$(get_indent ${indentlevel}) - Adding option '${optname}' with value '${optval}' to '${kconfig}'..."
+ print_info 3 "$(get_indent ${indentlevel}) - Adding option '${optname}' with value '${optval}' to '${kconfig}'..."
echo "${optname}=${optval}" >> "${kconfig}" \
|| gen_die "Failed to add '${optname}=${optval}' to '$kconfig'"
[ ! -f "${TEMP}/.kconfig_modified" ] && touch "${TEMP}/.kconfig_modified"
elif [[ "${curropt}" != "*#*" && "${curropt#*=}" == "${optval}" ]]
then
- print_info 2 "$(get_indent ${indentlevel}) - Option '${optname}=${optval}' already set in '${kconfig}'; Skipping ..."
+ print_info 3 "$(get_indent ${indentlevel}) - Option '${optname}=${optval}' already set in '${kconfig}'; Skipping ..."
else
- print_info 2 "$(get_indent ${indentlevel}) - Setting option '${optname}' to '${optval}' in '${kconfig}'..."
+ print_info 3 "$(get_indent ${indentlevel}) - Setting option '${optname}' to '${optval}' in '${kconfig}'..."
sed -i "${kconfig}" \
-e "s/^#\? \?${optname}[ =].*/${optname}=${optval}/g" \
|| gen_die "Failed to set '${optname}=${optval}' in '$kconfig'"
diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 42196c5..9c701f5 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -1268,7 +1268,7 @@ append_modules() {
continue;
fi
- print_info 2 "$(get_indent 3) - Copying ${i}${MOD_EXT} ..."
+ print_info 3 "$(get_indent 3) - Copying ${i}${MOD_EXT} ..."
cp -ax --parents "${mymod}" "${TDIR}"/ 2>/dev/null \
|| gen_die "Failed to copy '${mymod}' to '${TDIR}/'!"
n_copied_modules=$[$n_copied_modules+1]
next reply other threads:[~2019-07-15 23:28 UTC|newest]
Thread overview: 776+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-15 23:28 Thomas Deutschmann [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-25 17:22 [gentoo-commits] proj/genkernel:master commit in: / Ben Kohler
2024-09-12 14:13 Ben Kohler
2024-05-22 14:38 Ben Kohler
2024-05-20 12:59 Ben Kohler
2024-05-20 12:59 Ben Kohler
2024-05-20 12:59 Ben Kohler
2024-05-20 12:59 Ben Kohler
2024-05-20 12:59 Ben Kohler
2024-05-20 12:59 Ben Kohler
2024-05-06 21:43 Ben Kohler
2024-05-03 6:30 Sam James
2024-05-01 18:13 Ben Kohler
2024-05-01 18:13 Ben Kohler
2024-05-01 18:08 Ben Kohler
2024-04-26 17:17 Ben Kohler
2024-04-21 11:59 Ben Kohler
2024-02-17 5:55 Robin H. Johnson
2024-02-17 5:55 Robin H. Johnson
2024-02-17 5:55 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-02-17 5:16 Robin H. Johnson
2024-01-19 18:29 Ben Kohler
2023-10-28 1:59 Sam James
2023-10-28 1:59 Sam James
2023-10-28 1:59 Sam James
2023-10-28 1:59 Sam James
2023-10-21 13:51 Sam James
2023-08-30 6:18 Sam James
2023-08-30 5:48 Sam James
2023-08-08 5:33 Sam James
2023-07-28 9:53 Sam James
2023-07-27 10:42 Sam James
2023-07-05 18:34 Sam James
2023-05-29 2:40 Matt Turner
2023-05-29 2:40 Matt Turner
2023-05-24 16:26 Ben Kohler
2023-01-25 17:21 Matt Turner
2023-01-08 18:58 Matt Turner
2023-01-08 18:58 Matt Turner
2022-11-14 19:08 Matt Turner
2022-10-19 22:41 Matt Turner
2022-06-21 2:54 Robin H. Johnson
2022-05-29 16:52 Robin H. Johnson
2022-05-28 20:54 Robin H. Johnson
2022-05-28 20:52 Robin H. Johnson
2022-05-24 20:36 Robin H. Johnson
2022-05-16 16:47 Robin H. Johnson
2022-05-16 5:34 Robin H. Johnson
2022-05-16 5:34 Robin H. Johnson
2022-05-16 5:34 Robin H. Johnson
2022-05-16 5:34 Robin H. Johnson
2022-05-16 5:34 Robin H. Johnson
2022-05-16 5:34 Robin H. Johnson
2021-11-15 3:35 Thomas Deutschmann
2021-11-15 3:35 Thomas Deutschmann
2021-11-15 3:35 Thomas Deutschmann
2021-11-15 3:35 Thomas Deutschmann
2021-11-15 3:35 Thomas Deutschmann
2021-10-27 16:56 Thomas Deutschmann
2021-09-30 21:17 Thomas Deutschmann
2021-09-25 19:25 Thomas Deutschmann
2021-09-13 5:08 Matt Turner
2021-07-08 22:18 Thomas Deutschmann
2021-07-08 16:35 Thomas Deutschmann
2021-07-06 18:07 Thomas Deutschmann
2021-07-06 1:55 Thomas Deutschmann
2021-07-06 0:25 Thomas Deutschmann
2021-07-06 0:25 Thomas Deutschmann
2021-07-06 0:25 Thomas Deutschmann
2021-07-06 0:25 Thomas Deutschmann
2021-07-06 0:25 Thomas Deutschmann
2021-07-06 0:25 Thomas Deutschmann
2021-03-27 0:26 Thomas Deutschmann
2021-03-27 0:00 Thomas Deutschmann
2021-03-27 0:00 Thomas Deutschmann
2021-03-27 0:00 Thomas Deutschmann
2021-03-19 2:46 Thomas Deutschmann
2021-03-19 2:46 Thomas Deutschmann
2021-03-15 21:02 Thomas Deutschmann
2021-03-15 21:02 Thomas Deutschmann
2021-02-18 23:12 Thomas Deutschmann
2021-02-18 13:32 Thomas Deutschmann
2021-02-09 13:18 Thomas Deutschmann
2021-02-08 22:32 Thomas Deutschmann
2021-02-08 22:32 Thomas Deutschmann
2021-02-08 22:32 Thomas Deutschmann
2021-02-06 16:28 Thomas Deutschmann
2021-02-06 16:28 Thomas Deutschmann
2021-02-06 15:27 Thomas Deutschmann
2021-02-06 15:27 Thomas Deutschmann
2020-09-02 13:52 Thomas Deutschmann
2020-08-30 21:44 Thomas Deutschmann
2020-08-30 21:11 Thomas Deutschmann
2020-08-30 21:11 Thomas Deutschmann
2020-08-28 21:33 Thomas Deutschmann
2020-08-28 20:18 Thomas Deutschmann
2020-08-28 20:18 Thomas Deutschmann
2020-08-28 20:18 Thomas Deutschmann
2020-08-28 20:18 Thomas Deutschmann
2020-08-28 20:18 Thomas Deutschmann
2020-08-28 20:18 Thomas Deutschmann
2020-08-26 22:54 Thomas Deutschmann
2020-08-25 17:42 Thomas Deutschmann
2020-08-24 11:45 Thomas Deutschmann
2020-08-24 11:45 Thomas Deutschmann
2020-08-21 13:43 Thomas Deutschmann
2020-08-17 23:21 Thomas Deutschmann
2020-08-17 23:21 Thomas Deutschmann
2020-08-10 9:18 Thomas Deutschmann
2020-08-04 9:27 Thomas Deutschmann
2020-08-02 22:42 Thomas Deutschmann
2020-08-02 22:42 Thomas Deutschmann
2020-08-02 22:42 Thomas Deutschmann
2020-08-02 22:42 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-08-01 21:41 Thomas Deutschmann
2020-07-23 23:57 Thomas Deutschmann
2020-07-23 23:57 Thomas Deutschmann
2020-07-20 16:08 Thomas Deutschmann
2020-07-20 2:29 Thomas Deutschmann
2020-07-16 18:36 Thomas Deutschmann
2020-07-16 18:36 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-07-16 15:03 Thomas Deutschmann
2020-06-23 18:43 Thomas Deutschmann
2020-06-20 2:17 Thomas Deutschmann
2020-06-15 17:38 Thomas Deutschmann
2020-06-15 17:38 Thomas Deutschmann
2020-06-15 1:57 Thomas Deutschmann
2020-04-11 23:14 Thomas Deutschmann
2020-04-11 20:04 Thomas Deutschmann
2020-04-11 20:04 Thomas Deutschmann
2020-04-10 12:52 Thomas Deutschmann
2020-04-07 23:03 Thomas Deutschmann
2020-03-25 14:02 Thomas Deutschmann
2020-03-05 15:10 Thomas Deutschmann
2020-03-05 15:10 Thomas Deutschmann
2020-03-04 0:02 Thomas Deutschmann
2020-02-13 13:33 Thomas Deutschmann
2020-01-23 17:59 Thomas Deutschmann
2020-01-14 23:21 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-14 1:36 Thomas Deutschmann
2020-01-12 14:59 Thomas Deutschmann
2020-01-12 14:59 Thomas Deutschmann
2020-01-07 20:14 Thomas Deutschmann
2020-01-02 17:33 Thomas Deutschmann
2019-12-31 17:25 Thomas Deutschmann
2019-12-29 4:03 Thomas Deutschmann
2019-12-29 4:03 Thomas Deutschmann
2019-12-29 4:03 Thomas Deutschmann
2019-12-16 0:11 Thomas Deutschmann
2019-12-14 19:02 Thomas Deutschmann
2019-12-14 19:02 Thomas Deutschmann
2019-12-14 19:02 Thomas Deutschmann
2019-12-14 0:26 Thomas Deutschmann
2019-12-14 0:26 Thomas Deutschmann
2019-12-14 0:26 Thomas Deutschmann
2019-12-14 0:26 Thomas Deutschmann
2019-12-14 0:26 Thomas Deutschmann
2019-12-06 15:32 Thomas Deutschmann
2019-12-06 15:31 Thomas Deutschmann
2019-12-06 0:00 Thomas Deutschmann
2019-12-05 23:52 Thomas Deutschmann
2019-12-05 23:52 Thomas Deutschmann
2019-11-27 19:37 Thomas Deutschmann
2019-11-27 16:40 Thomas Deutschmann
2019-11-27 16:40 Thomas Deutschmann
2019-11-26 17:44 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-11-24 20:00 Thomas Deutschmann
2019-10-13 16:00 Thomas Deutschmann
2019-10-13 16:00 Thomas Deutschmann
2019-10-13 16:00 Thomas Deutschmann
2019-10-13 16:00 Thomas Deutschmann
2019-10-09 17:01 Thomas Deutschmann
2019-10-04 12:46 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-10-02 22:45 Thomas Deutschmann
2019-09-16 21:31 Thomas Deutschmann
2019-09-16 21:31 Thomas Deutschmann
2019-09-08 12:47 Thomas Deutschmann
2019-09-01 20:35 Thomas Deutschmann
2019-08-30 21:41 Thomas Deutschmann
2019-08-30 21:41 Thomas Deutschmann
2019-08-29 20:49 Thomas Deutschmann
2019-08-21 14:49 Thomas Deutschmann
2019-08-16 19:56 Thomas Deutschmann
2019-08-11 19:55 Thomas Deutschmann
2019-08-11 19:55 Thomas Deutschmann
2019-08-11 19:55 Thomas Deutschmann
2019-08-10 19:37 Thomas Deutschmann
2019-08-10 19:37 Thomas Deutschmann
2019-08-10 19:37 Thomas Deutschmann
2019-08-10 18:34 Thomas Deutschmann
2019-08-07 15:46 Thomas Deutschmann
2019-08-07 15:46 Thomas Deutschmann
2019-08-04 11:36 Thomas Deutschmann
2019-08-04 11:36 Thomas Deutschmann
2019-08-04 11:36 Thomas Deutschmann
2019-08-04 11:36 Thomas Deutschmann
2019-08-03 0:43 Thomas Deutschmann
2019-08-02 7:48 Thomas Deutschmann
2019-08-02 7:48 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-29 20:10 Thomas Deutschmann
2019-07-26 16:31 Thomas Deutschmann
2019-07-26 16:31 Thomas Deutschmann
2019-07-26 16:31 Thomas Deutschmann
2019-07-26 16:31 Thomas Deutschmann
2019-07-23 19:47 Thomas Deutschmann
2019-07-23 19:47 Thomas Deutschmann
2019-07-23 19:47 Thomas Deutschmann
2019-07-23 19:47 Thomas Deutschmann
2019-07-23 19:47 Thomas Deutschmann
2019-07-23 19:47 Thomas Deutschmann
2019-07-21 18:38 Thomas Deutschmann
2019-07-21 18:38 Thomas Deutschmann
2019-07-21 18:38 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-21 16:26 Thomas Deutschmann
2019-07-18 15:32 Thomas Deutschmann
2019-07-18 15:32 Thomas Deutschmann
2019-07-18 15:32 Thomas Deutschmann
2019-07-18 0:44 Thomas Deutschmann
2019-07-18 0:44 Thomas Deutschmann
2019-07-18 0:44 Thomas Deutschmann
2019-07-18 0:44 Thomas Deutschmann
2019-07-18 0:44 Thomas Deutschmann
2019-07-17 10:39 Thomas Deutschmann
2019-07-17 10:19 Thomas Deutschmann
2019-07-16 19:24 Thomas Deutschmann
2019-07-16 19:24 Thomas Deutschmann
2019-07-16 16:36 Thomas Deutschmann
2019-07-16 14:54 Thomas Deutschmann
2019-07-16 14:54 Thomas Deutschmann
2019-07-16 12:19 Thomas Deutschmann
2019-07-16 12:19 Thomas Deutschmann
2019-07-16 12:19 Thomas Deutschmann
2019-07-16 12:19 Thomas Deutschmann
2019-07-16 12:19 Thomas Deutschmann
2019-07-16 0:06 Thomas Deutschmann
2019-07-16 0:05 Thomas Deutschmann
2019-07-15 23:32 Thomas Deutschmann
2019-07-15 18:06 Thomas Deutschmann
2019-07-15 14:22 Thomas Deutschmann
2019-07-15 13:17 Thomas Deutschmann
2019-07-15 12:27 Thomas Deutschmann
2019-07-15 12:27 Thomas Deutschmann
2019-07-15 12:27 Thomas Deutschmann
2019-07-14 23:08 Thomas Deutschmann
2019-07-14 23:08 Thomas Deutschmann
2019-07-14 19:50 Thomas Deutschmann
2019-07-14 18:15 Thomas Deutschmann
2019-07-14 18:15 Thomas Deutschmann
2019-07-14 15:31 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-07-14 13:00 Thomas Deutschmann
2019-04-06 19:03 Thomas Deutschmann
2019-04-06 18:56 Thomas Deutschmann
2019-04-03 1:59 Thomas Deutschmann
2019-03-29 4:31 Thomas Deutschmann
2019-03-29 4:13 Thomas Deutschmann
2019-03-29 4:13 Thomas Deutschmann
2019-03-29 4:13 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-28 23:43 Thomas Deutschmann
2019-03-27 11:54 Thomas Deutschmann
2019-03-26 12:38 Thomas Deutschmann
2019-03-26 12:38 Thomas Deutschmann
2019-03-26 9:06 Thomas Deutschmann
2019-03-26 8:18 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-26 8:07 Thomas Deutschmann
2019-03-25 21:34 Thomas Deutschmann
2019-03-25 21:29 Thomas Deutschmann
2019-03-25 3:08 Thomas Deutschmann
2019-03-25 3:08 Thomas Deutschmann
2019-03-25 2:08 Thomas Deutschmann
2019-03-25 2:08 Thomas Deutschmann
2019-03-24 23:11 Thomas Deutschmann
2019-03-24 19:52 Thomas Deutschmann
2019-03-24 19:42 Thomas Deutschmann
2019-03-24 19:42 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-23 9:52 Thomas Deutschmann
2019-03-22 18:49 Thomas Deutschmann
2019-03-22 0:28 Thomas Deutschmann
2019-03-21 23:51 Thomas Deutschmann
2019-03-21 23:51 Thomas Deutschmann
2019-03-21 22:56 [gentoo-commits] proj/genkernel:bug642988 " Thomas Deutschmann
2019-03-21 23:51 ` [gentoo-commits] proj/genkernel:master " Thomas Deutschmann
2019-03-21 22:56 [gentoo-commits] proj/genkernel:bug642988 " Thomas Deutschmann
2019-03-21 23:51 ` [gentoo-commits] proj/genkernel:master " Thomas Deutschmann
2019-03-20 23:26 Thomas Deutschmann
2019-03-09 20:50 Thomas Deutschmann
2019-03-08 22:43 Ben Kohler
2019-03-08 17:08 Ben Kohler
2019-03-08 17:08 Ben Kohler
2019-03-08 5:43 Robin H. Johnson
2019-03-07 20:43 Ben Kohler
2019-03-01 6:00 Robin H. Johnson
2019-03-01 5:55 Robin H. Johnson
2019-02-28 6:40 Robin H. Johnson
2019-02-19 7:40 Robin H. Johnson
2019-02-19 7:40 Robin H. Johnson
2019-02-19 7:40 Robin H. Johnson
2018-08-04 23:26 Robin H. Johnson
2018-07-19 0:46 Ben Kohler
2018-06-12 21:26 Robin H. Johnson
2018-05-08 0:18 Thomas Deutschmann
2018-04-13 17:29 Robin H. Johnson
2018-04-13 17:29 Robin H. Johnson
2018-04-13 17:29 Robin H. Johnson
2018-04-04 18:15 Robin H. Johnson
2018-04-04 18:15 Robin H. Johnson
2017-12-25 7:09 Robin H. Johnson
2017-12-25 7:06 Robin H. Johnson
2017-12-20 22:54 Robin H. Johnson
2017-11-18 21:32 Robin H. Johnson
2017-11-18 21:32 Robin H. Johnson
2017-11-16 23:40 Robin H. Johnson
2017-11-16 23:08 Robin H. Johnson
2017-11-15 3:16 Robin H. Johnson
2017-11-15 3:08 Robin H. Johnson
2017-10-31 18:59 Robin H. Johnson
2017-10-31 18:59 Robin H. Johnson
2017-10-31 18:59 Robin H. Johnson
2017-10-28 8:28 Robin H. Johnson
2017-09-07 17:44 Robin H. Johnson
2017-09-04 5:54 Robin H. Johnson
2017-09-03 6:30 Robin H. Johnson
2017-09-03 6:28 Robin H. Johnson
2017-09-03 6:28 Robin H. Johnson
2017-09-03 6:28 Robin H. Johnson
2017-09-03 6:28 Robin H. Johnson
2017-09-03 6:28 Robin H. Johnson
2017-09-03 6:28 Robin H. Johnson
2017-09-03 5:19 Robin H. Johnson
2017-09-03 5:03 Robin H. Johnson
2017-09-03 5:03 Robin H. Johnson
2017-09-03 4:46 Robin H. Johnson
2017-07-14 19:53 Robin H. Johnson
2017-07-14 19:53 Robin H. Johnson
2017-07-14 18:56 Robin H. Johnson
2017-07-14 18:52 Robin H. Johnson
2017-06-23 22:15 Robin H. Johnson
2017-06-23 21:58 Robin H. Johnson
2017-06-23 21:58 Robin H. Johnson
2017-06-23 21:53 Robin H. Johnson
2017-04-01 21:53 Robin H. Johnson
2017-01-13 0:43 Robin H. Johnson
2017-01-08 1:57 Robin H. Johnson
2017-01-08 1:57 Robin H. Johnson
2017-01-08 1:57 Robin H. Johnson
2017-01-08 0:40 Robin H. Johnson
2017-01-08 0:40 Robin H. Johnson
2017-01-04 0:11 Robin H. Johnson
2017-01-04 0:11 Robin H. Johnson
2017-01-03 5:16 Robin H. Johnson
2017-01-03 4:38 Robin H. Johnson
2017-01-03 4:38 Robin H. Johnson
2017-01-02 23:25 Robin H. Johnson
2017-01-02 23:25 Robin H. Johnson
2017-01-02 23:08 Robin H. Johnson
2017-01-02 22:58 Robin H. Johnson
2017-01-02 22:58 Robin H. Johnson
2017-01-02 22:41 Robin H. Johnson
2017-01-02 22:27 Robin H. Johnson
2017-01-02 22:27 Robin H. Johnson
2017-01-02 22:27 Robin H. Johnson
2017-01-02 22:27 Robin H. Johnson
2017-01-02 22:27 Robin H. Johnson
2017-01-02 20:39 Robin H. Johnson
2017-01-02 20:39 Robin H. Johnson
2017-01-02 20:14 Matt Thode
2017-01-02 2:51 Matt Thode
2016-10-27 16:30 Robin H. Johnson
2016-10-27 15:22 Richard Farina
2016-10-27 4:38 Richard Farina
2016-08-31 22:25 Robin H. Johnson
2016-08-17 15:40 Richard Yao
2016-08-16 21:33 Robin H. Johnson
2016-08-16 21:33 Robin H. Johnson
2016-08-13 23:27 Robin H. Johnson
2016-08-13 23:27 Robin H. Johnson
2016-06-23 19:05 Mike Frysinger
2016-06-23 3:28 Mike Frysinger
2016-06-23 3:17 Mike Frysinger
2016-05-16 6:57 Robin H. Johnson
2016-05-16 6:55 Robin H. Johnson
2016-05-16 6:55 Robin H. Johnson
2016-03-27 6:14 Mike Frysinger
2016-03-27 6:10 Mike Frysinger
2016-03-27 6:10 Mike Frysinger
2016-02-29 21:48 Robin H. Johnson
2016-02-07 12:53 Robin H. Johnson
2016-02-07 12:53 Robin H. Johnson
2016-02-07 12:53 Robin H. Johnson
2016-02-07 1:30 Robin H. Johnson
2016-02-06 22:15 Robin H. Johnson
2016-02-05 23:46 Robin H. Johnson
2016-01-24 6:12 Robin H. Johnson
2016-01-23 22:49 Robin H. Johnson
2016-01-23 22:14 Robin H. Johnson
2016-01-23 21:28 Robin H. Johnson
2016-01-05 23:54 Robin H. Johnson
2016-01-05 19:39 Robin H. Johnson
2015-12-28 3:23 Robin H. Johnson
2015-10-13 18:28 Richard Farina
2015-09-01 3:24 Richard Farina
2015-08-25 22:17 Richard Yao
2015-08-20 2:27 Richard Farina
2015-08-20 1:58 Richard Farina
2015-08-20 1:58 Richard Farina
2015-08-20 1:46 Richard Farina
2015-08-20 1:44 Richard Farina
2015-08-18 3:35 Robin H. Johnson
2015-07-31 18:43 Richard Yao
2015-07-31 18:04 Richard Yao
2015-07-30 20:56 Richard Farina
2015-07-30 20:56 Richard Farina
2015-02-08 21:39 Christoph Junghans
2015-02-08 21:39 Christoph Junghans
2015-01-17 19:42 Christoph Junghans
2014-08-17 20:21 Richard Yao
2014-08-12 15:03 Richard Yao
2014-08-11 23:11 Richard Yao
2014-07-15 7:28 Robin H. Johnson
2014-07-15 7:27 Robin H. Johnson
2014-06-23 22:06 Robin H. Johnson
2014-06-23 22:06 Robin H. Johnson
2014-06-23 22:06 Robin H. Johnson
2014-06-23 22:06 Robin H. Johnson
2014-06-23 22:06 Robin H. Johnson
2014-06-23 22:06 Robin H. Johnson
2014-06-22 2:11 Jorge Manuel B. S. Vicetto
2014-06-22 2:08 Robin H. Johnson
2014-05-31 19:57 Robin H. Johnson
2014-04-16 8:33 Robin H. Johnson
2014-04-14 3:04 Robin H. Johnson
2014-04-14 1:16 Robin H. Johnson
2014-04-14 1:16 Robin H. Johnson
2014-04-14 1:16 Robin H. Johnson
2014-04-14 1:16 Robin H. Johnson
2014-04-14 1:16 Robin H. Johnson
2014-04-14 1:16 Robin H. Johnson
2014-04-06 1:35 Robin H. Johnson
2014-03-17 19:52 Robin H. Johnson
2014-03-17 18:50 Richard Yao
2014-03-16 0:26 Richard Yao
2014-03-16 0:26 Richard Yao
2014-03-16 0:26 Richard Yao
2014-03-16 0:26 Richard Yao
2014-03-16 0:26 Richard Yao
2014-02-27 22:52 Richard Yao
2014-02-27 4:47 Richard Yao
2014-02-27 4:47 Richard Yao
2014-01-25 3:11 Richard Yao
2014-01-24 19:27 Richard Yao
2014-01-24 19:15 Richard Yao
2013-10-02 12:43 Richard Yao
2013-07-14 14:35 Richard Yao
2013-06-09 14:03 Richard Yao
2013-06-09 13:57 Richard Yao
2013-06-09 13:57 [gentoo-commits] proj/genkernel:ryao " Richard Yao
2013-06-09 13:48 ` [gentoo-commits] proj/genkernel:master " Richard Yao
2013-06-09 13:48 Richard Yao
2013-06-09 8:32 [gentoo-commits] proj/genkernel:ryao " Richard Yao
2013-06-09 8:31 ` [gentoo-commits] proj/genkernel:master " Richard Yao
2013-06-09 8:32 [gentoo-commits] proj/genkernel:ryao " Richard Yao
2013-06-09 8:31 ` [gentoo-commits] proj/genkernel:master " Richard Yao
2013-06-06 3:36 [gentoo-commits] proj/genkernel:ryao " Richard Yao
2013-06-04 2:51 ` [gentoo-commits] proj/genkernel:master " Richard Yao
2013-06-06 3:36 [gentoo-commits] proj/genkernel:ryao " Richard Yao
2013-06-03 23:54 ` [gentoo-commits] proj/genkernel:master " Richard Yao
2013-06-03 23:49 Richard Yao
2013-05-02 12:20 Fabio Erculiani
2013-03-03 20:31 Peter Hjalmarsson
2013-02-09 21:47 Peter Hjalmarsson
2012-11-06 6:30 Robin H. Johnson
2012-11-06 6:30 Robin H. Johnson
2012-11-02 17:19 Robin H. Johnson
2012-11-02 17:19 Robin H. Johnson
2012-11-02 16:52 Robin H. Johnson
2012-10-19 22:18 Robin H. Johnson
2012-10-15 20:58 Robin H. Johnson
2012-10-15 20:54 Robin H. Johnson
2012-10-15 20:18 Peter Hjalmarsson
2012-10-15 5:54 Robin H. Johnson
2012-10-15 5:54 Robin H. Johnson
2012-10-15 5:37 Robin H. Johnson
2012-10-14 16:25 Sebastian Pipping
2012-10-14 0:05 Robin H. Johnson
2012-10-13 22:03 Robin H. Johnson
2012-10-13 21:49 Robin H. Johnson
2012-10-13 21:49 Robin H. Johnson
2012-10-13 21:49 Robin H. Johnson
2012-10-13 18:36 Robin H. Johnson
2012-10-03 16:54 Sebastian Pipping
2012-10-03 16:51 Sebastian Pipping
2012-09-23 22:31 Sebastian Pipping
2012-09-10 1:39 Sebastian Pipping
2012-09-10 1:28 Sebastian Pipping
2012-08-14 17:05 Richard Yao
2012-08-14 17:04 Richard Yao
2012-08-14 15:29 Sebastian Pipping
2012-08-14 14:39 Richard Yao
2012-08-12 23:22 Sebastian Pipping
2012-08-12 21:40 Sebastian Pipping
2012-08-12 21:40 Sebastian Pipping
2012-08-12 21:40 Sebastian Pipping
2012-08-12 19:04 Sebastian Pipping
2012-08-12 19:04 Sebastian Pipping
2012-08-12 19:04 Sebastian Pipping
2012-08-12 19:04 Sebastian Pipping
2012-08-12 19:04 Sebastian Pipping
2012-07-27 23:18 Sebastian Pipping
2012-07-21 18:46 Richard Yao
2012-07-21 1:08 Sebastian Pipping
2012-07-17 20:03 Richard Yao
2012-07-09 22:51 Sebastian Pipping
2012-07-09 22:51 Sebastian Pipping
2012-07-09 22:45 Sebastian Pipping
2012-07-09 22:45 Sebastian Pipping
2012-07-09 22:45 Sebastian Pipping
2012-07-08 22:08 Sebastian Pipping
2012-07-08 22:03 Sebastian Pipping
2012-07-08 22:03 Sebastian Pipping
2012-07-08 22:03 Sebastian Pipping
2012-07-08 22:03 Sebastian Pipping
2012-07-08 22:03 Sebastian Pipping
2012-07-08 22:03 Sebastian Pipping
2012-07-08 17:22 Sebastian Pipping
2012-07-08 17:22 Sebastian Pipping
2012-07-08 17:22 Sebastian Pipping
2012-06-11 17:39 Sebastian Pipping
2012-06-11 17:35 Sebastian Pipping
2012-06-10 17:17 Sebastian Pipping
2012-06-04 19:58 Sebastian Pipping
2012-06-04 19:58 Sebastian Pipping
2012-06-04 19:43 Sebastian Pipping
2012-05-28 18:26 Sebastian Pipping
2012-05-17 18:34 Sebastian Pipping
2012-05-17 17:49 Sebastian Pipping
2012-05-17 17:49 Sebastian Pipping
2012-05-17 17:49 Sebastian Pipping
2012-05-14 0:56 Sebastian Pipping
2012-05-14 0:15 Sebastian Pipping
2012-05-14 0:15 Sebastian Pipping
2012-05-12 14:23 Sebastian Pipping
2012-05-01 19:44 Robin H. Johnson
2012-05-01 19:44 Robin H. Johnson
2012-05-01 19:44 Robin H. Johnson
2012-04-18 2:45 Robin H. Johnson
2012-04-16 3:16 Robin H. Johnson
2012-04-16 3:16 Robin H. Johnson
2012-04-16 3:07 Sebastian Pipping
2012-04-16 2:38 Sebastian Pipping
2012-04-16 2:38 Sebastian Pipping
2012-04-16 2:38 Sebastian Pipping
2012-04-16 2:38 Sebastian Pipping
2012-04-16 2:38 Sebastian Pipping
2012-04-15 2:25 Robin H. Johnson
2012-04-15 2:25 Robin H. Johnson
2012-04-12 4:21 Sebastian Pipping
2012-04-09 2:45 Sebastian Pipping
2012-04-09 2:45 Sebastian Pipping
2012-04-08 22:14 Sebastian Pipping
2012-04-08 22:14 Sebastian Pipping
2012-04-08 22:14 Sebastian Pipping
2012-04-08 22:14 Sebastian Pipping
2012-04-08 22:14 Sebastian Pipping
2012-04-08 22:14 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-04-08 18:33 Sebastian Pipping
2012-03-30 18:31 Sebastian Pipping
2012-03-30 18:31 Sebastian Pipping
2012-03-30 18:31 Sebastian Pipping
2012-03-22 15:20 Sebastian Pipping
2012-03-22 15:20 Sebastian Pipping
2012-03-22 15:20 Sebastian Pipping
2012-03-22 15:20 Sebastian Pipping
2012-03-22 3:13 Sebastian Pipping
2012-03-22 3:13 Sebastian Pipping
2012-03-12 19:39 Robin H. Johnson
2012-03-10 21:27 Robin H. Johnson
2012-03-10 21:23 Robin H. Johnson
2012-02-14 8:33 Robin H. Johnson
2012-02-12 6:47 Robin H. Johnson
2012-02-12 1:50 Robin H. Johnson
2012-02-12 1:22 Robin H. Johnson
2012-02-06 9:53 Robin H. Johnson
2012-02-06 8:19 Robin H. Johnson
2012-02-06 8:19 Robin H. Johnson
2012-02-06 8:19 Robin H. Johnson
2012-02-03 14:16 Sebastian Pipping
2012-01-24 23:27 Sebastian Pipping
2012-01-24 23:27 Sebastian Pipping
2012-01-15 0:49 Sebastian Pipping
2012-01-13 21:46 Sebastian Pipping
2012-01-13 20:30 Robin H. Johnson
2012-01-13 19:03 Sebastian Pipping
2012-01-12 3:40 Sebastian Pipping
2012-01-12 3:20 Sebastian Pipping
2012-01-08 2:30 Robin H. Johnson
2012-01-06 6:37 Robin H. Johnson
2012-01-06 4:29 Robin H. Johnson
2012-01-06 4:29 Robin H. Johnson
2012-01-06 4:29 Robin H. Johnson
2012-01-06 1:18 Robin H. Johnson
2012-01-06 1:18 Robin H. Johnson
2012-01-06 1:18 Robin H. Johnson
2012-01-05 20:33 Sebastian Pipping
2012-01-05 20:30 Sebastian Pipping
2012-01-05 16:51 Sebastian Pipping
2012-01-04 14:33 Sebastian Pipping
2012-01-04 3:38 Robin H. Johnson
2011-11-08 17:21 Sebastian Pipping
2011-10-30 13:33 Sebastian Pipping
2011-10-25 9:41 Fabio Erculiani
2011-09-23 1:51 Robin H. Johnson
2011-09-13 9:12 Fabio Erculiani
2011-08-16 19:57 Fabio Erculiani
2011-08-16 19:56 Fabio Erculiani
2011-08-10 10:47 Amadeusz Żołnowski
2011-08-06 17:13 Sebastian Pipping
2011-07-28 5:58 Sebastian Pipping
2011-07-26 22:34 Robin H. Johnson
2011-07-23 9:48 Sebastian Pipping
2011-07-03 22:28 Sebastian Pipping
2011-06-22 17:01 Sebastian Pipping
2011-06-22 17:01 Sebastian Pipping
2011-06-22 17:01 Sebastian Pipping
2011-06-22 17:01 Sebastian Pipping
2011-06-07 22:25 Sebastian Pipping
2011-06-05 16:07 Sebastian Pipping
2011-06-04 2:03 Sebastian Pipping
2011-05-31 13:26 Sebastian Pipping
2011-05-31 1:48 Sebastian Pipping
2011-05-31 1:48 Sebastian Pipping
2011-04-25 21:02 Sebastian Pipping
2011-03-28 18:24 [gentoo-commits] proj/genkernel:stable-next " Sebastian Pipping
2011-04-25 21:02 ` [gentoo-commits] proj/genkernel:master " Sebastian Pipping
2011-03-16 14:55 Sebastian Pipping
2011-03-16 13:51 Sebastian Pipping
2011-03-16 13:51 Sebastian Pipping
2011-03-16 13:51 Sebastian Pipping
2011-03-16 13:51 Sebastian Pipping
2011-02-10 17:19 Sebastian Pipping
2011-02-10 17:19 Sebastian Pipping
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1563233251.204b9e97920110d267cc28132d76e941ca177b13.whissi@gentoo \
--to=whissi@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox