lf (as in "list files") is a terminal file manager written in Go.
It is heavily inspired by ranger with some missing and extra features.
Original port from Chang, Chu-Kuan with input from sthen@ and me.
ok sthen@
adds new files referenced by linux 5.10 drm
rkl_dmc_ver2_02.bin
tgl_dmc_ver2_08.bin
tgl_huc_7.5.0.bin
drop files only referenced by linux 4.19 drm (OpenBSD 6.6->6.7)
No binary change to other files.
Take maintainer while here, discussed with robert@.
ok jcs@
All fields from the ps command can be fetched by calling a function of their
name (see SYNOPSIS). If the pid is not given as an argument to the function, $$
(cur pid) is assumed.
ok ajacoutot@
The sync gem has been removed from Ruby 2.7, add new port to RUN_DEPENDS to
fix "cannot load such file -- sync" on puppet(1) usage.
Found the hard way and diagnosed by giovanni when upgrading agents from
6.8 -stable to snapshots.
Help from gkoehler by porting the ruby-sync gem.
OK and tested with Puppet 5.5 agent on -CURRENT with Puppet 5.5 server on 6.8
-stable by giovanni
Fixes problem booting from spi with pinebook pro seen with 2020.10.
Disable CONFIG_USE_PREBOOT from rk3399 configs as this runs
'usb start' which is reported to break booting via other methods
by kurt@.
Tested by kurt@ patrick@ and myself on
am335x_evm
mx6cuboxi
omap4_panda
pinebook-pro-rk3399
rock64-rk3328
rockpro64-rk3399
rpi_3
tinker-rk3288
ok kurt@
Otherwise ftp(1) drops into the "ftp> " prompt
(I fixed that bug myself in sysupgrade.sh r1.42 but forgot about it here.)
wget(1) and curl(1) always exit either way instead of blocking, *but*:
- cURL does not URL encode unsafe characters (just like ftp).
- Wget cannot be quiet except for error messages AND write files to stdout:
1. --quiet drops *every* message (incl. warnings/errors),
2. --no-verbose is silent but not quiet (still progress/stats on stdout),
3. --output-file redirects *every* message (progress *and* errors);
So no way to tell it "quiet, errors on stderr, content on stdout)...
So three different tools of which none of them gets all three things right:
- ftp fails on URLs without schema
- cURL does not URL encode its input (on purpose according to manual)
- Wget fails to provide basic stdio primitives
Stick to ftp(1), "validate" the URL with glob patterns and encode it with
jq(1) (as done before) to keep RUN_DEPENDS down at one (jq).