A trivial simplification is to remove 1s, as they are the default file descriptors for redirecting output.
make install >/dev/null && update-initramfs -k all -u >/dev/null
But I suspect you're looking for a group of commands to aggregate standard output:
{ make install && update-initramfs -k all -u; } > /dev/null
source
share