-
Posts
1801 -
Joined
-
Last visited
Content Type
Forums
Store
Crowdfunding
Applications
Events
Raffles
Community Map
Posts posted by guidol
-
-
33 minutes ago, barry2212 said:
This is a little bit confuse cause my orange pi one detect the device and it have the /dev/cdrom and the orange pi zero is not
"ls: cannot access '/dev/cdrom': No such file or directory" is normal then a audio-syste has no "real" filesystem (for a computer).
is you got /dev/sr0 or /dev/cdrom, then you could try to install cdtools (apt intall cdtools) and then try the command
cdplay -d /dev/sr0
or
cdplay -d /dev/cdrom
-
My terminal output ist also a /dev/sg0 device:
[1339704.355462] usb 5-1: new high-speed USB device number 2 using ehci-platform [1339704.516262] usb 5-1: New USB device found, idVendor=0e8d, idProduct=1836, bcdDevice= 0.00 [1339704.516278] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [1339704.516289] usb 5-1: Product: SES084D [1339704.516300] usb 5-1: Manufacturer: TSST Inc [1339704.516310] usb 5-1: SerialNumber: R96X542 [1339704.519631] usb-storage 5-1:1.0: USB Mass Storage device detected [1339704.532320] scsi host0: usb-storage 5-1:1.0 [1339705.554226] scsi 0:0:0:0: CD-ROM TSSTcorp CDDVDW SE-S084F TS00 PQ: 0 ANSI: 0 [1339705.555057] scsi 0:0:0:0: Attached scsi generic sg0 type 5
On the net I do only found a information that https://forums.gentoo.org/viewtopic-p-1316644.html
/dev/sg0 is a character-device
and onyl
/dev/sr0 would be a block-device
A block device is needed for the text-cdaudio-player packages "cdtool" or "cdcd".
The URL also tells that block-device support has to be compiled in the kernel.
I dont know if armbian has that block-device-support in there
So with my /dev/sg0 (as yours) I only do get the following message from cdtool:
root@npi-k1-plus(192.168.6.70):~# cdplay -d /dev/sg0 cdplay: can't open cdrom (/dev/sg0): not a block device. # apt-cache search cdtool cdtool - text-based audio CD player and CD-ROM control commands # apt-cache search cdcd cdcd - command line or console based CD player
The following URL tells how to play audio-cd via comman line:
http://www.pc-freak.net/blog/how-to-play-audio-music-cds-in-gnulinux-and-freenetopen-bsds/Its also possible via mplayer on the commandline:
mplayer cdda:// /dev/cdrom
You can add a track number or range after the // (ex: cdda://1-5), if you want.[EDIT]
normally armbian seems to support /dev/sr0 because of the udev-rule in
/lib/udev/rules.d/50-udev-default.rules:
SUBSYSTEM=="block", GROUP="disk"
SUBSYSTEM=="block", KERNEL=="sr[0-9]*", GROUP="cdrom"
SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="4|5", GROUP="cdrom"
KERNEL=="sch[0-9]*", GROUP="cdrom"
KERNEL=="pktcdvd[0-9]*", GROUP="cdrom"
KERNEL=="pktcdvd", GROUP="cdrom"
-
0.72, released on 2019-07-20, is the latest release.
These features are new in 0.72 (released 2019-07-20): Security fixes found by the EU-funded bug bounty: two separate vulnerabilities affecting the obsolete SSH-1 protocol, both available before host key checking a vulnerability in all the SSH client tools (PuTTY, Plink, PSFTP and PSCP) if a malicious program can impersonate Pageant Bug fix: crash in GSSAPI / Kerberos key exchange affecting third-party GSSAPI providers on Windows (such as MIT Kerberos for Windows) Bug fix: crash in GSSAPI / Kerberos key exchange triggered if the server provided an ordinary SSH host key as part of the exchange Bug fix: trust sigils were never turned off in SSH-1 or Rlogin Bug fix: trust sigils were never turned back on if you used Restart Session Bug fix: PSCP in SCP download mode could create files with a spurious newline at the end of their names Bug fix: PSCP in SCP download mode with the -p option would generate spurious complaints about illegal file renaming Bug fix: the initial instruction message was never printed during SSH keyboard-interactive authentication Bug fix: pasting very long lines through connection sharing could crash the downstream PuTTY window Bug fix: in keyboard layouts with a ',' key on the numeric keypad (e.g. German), Windows PuTTY would generate '.' instead for that key Bug fix: PuTTYgen could generate RSA keys with a modulus one bit shorter than requested32bit
https://the.earth.li/~sgtatham/putty/0.72/w32/putty.zip
64bit
-
On 7/2/2019 at 12:49 PM, Dan M said:
Although it (v.4.3.1) has been cited as fixing this issue I am still getting this error after a clean install 4.3.1. Strange.
Today I gave buster a new try with pihole on my T95K Pro S912 TVBox.
I compiled a actual version of debian buster for it (thanks to @balbes150):
Debian Buster with Armbian Linux 5.3.0-rc1-next-20190726-aml-s912 package bsp-kernel[5.91] dtb[5.91] firmware[5.91] config[5.91]
and started the pihole install via: curl -sSL https://install.pi-hole.net | bash
The installation didnt broke like before with debian buster (no problem with lighttpd).
In the middle of the installation I did get the following error-message between the installation-messages:
[i] Backing up /etc/dnsmasq.conf to /etc/dnsmasq.conf.old iptables/1.8.2 Failed to initialize nft: Protocol not supported iptables/1.8.2 Failed to initialize nft: Protocol not supported
Installation went fine, but I did search for the error and found the following page:
https://gist.github.com/nickfox-taterli/fcddd0ac724ec066b51f8e777800fea2The is listed that buster has as default now nftables and not xtables.
The problem can be fixed with the following commands:
sudo update-alternatives --set iptables /usr/sbin/iptables-legacy sudo update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
This will set some new symbolic links ( to other symbolic links
) :
ls -l /etc/alternatives/iptables lrwxrwxrwx 1 root root 25 Jul 26 15:42 /etc/alternatives/iptables -> /usr/sbin/iptables-legacy ls -l /usr/sbin/iptables-legacy lrwxrwxrwx 1 root root 20 Mar 1 15:28 /usr/sbin/iptables-legacy -> xtables-legacy-multi ls -l /etc/alternatives/ip6tables lrwxrwxrwx 1 root root 26 Jul 26 15:42 /etc/alternatives/ip6tables -> /usr/sbin/ip6tables-legacy ls -l /usr/sbin/ip6tables-legacy lrwxrwxrwx 1 root root 20 Mar 1 15:28 /usr/sbin/ip6tables-legacy -> xtables-legacy-multi
Version is 4.3.1 (like the Pihole-team said the fixed the buster lighttpd problem):
Pi-hole Version v4.3.1 Web Interface Version v4.3 FTL Version v4.3.1
But now it seems to work with buster
BTW: for the redirect to the /admin page (400 Bad Request before) I also had to edit /etc/lighttpd/lighttpd.conf like before
-
-
9 minutes ago, Dmitriy Zhuk said:
I can't find image with desktop version on page https://www.armbian.com/orange-pi-pc-plus/#kernels-archive
Where is desktop version?
At https://dl.armbian.com/orangepipcplus/archive/
I also did found only desktop images with the legacy 3.4-kernel
Maybe @Igor means that with the newer kernel you could see the console after the kernel-start?
-
3 hours ago, martinayotte said:
Was it working under 5.1.y ?
If Yes, maybe I can look if DT were different between 5.1.y and 5.2.y ...
I cant tell, because the C2 is the "black sheep" of my SBC-family

With this version of armbian the support seems to be much better than the last one I tested (and mostly I tested headless, because support wasnt the best).So I would say there was no sound-support in 5.1 and there is no sound-overlay.
USB-Soundcard does work.
The decompiled .DTB doesnst show also nothing about HDMI-Audio...
My be in the far future there will be a patch used like
or
For me - I think - a desktop SBC will start at 4GB of Ram and working Video-Acceleration and Sound.
The C2 is getting near...but with 2GB of Ram a very good headless SBC now
-
15 hours ago, martinayotte said:
Good ! Tell us if everything is fine ...
Today I booted the Desktop-version.
On the shell/cli-side seems all OK.
At the Desktop-side Graphics do work well (can play Youtube
) - but I cant get any sound out of my HDMI monitor
aplay -l shows:
**** List of PLAYBACK Hardware Devices **** card 0: mesongxaudio [meson-gx-audio], device 0: meson-aiu-i2s.0.auto-i2s-hifi i2s-hifi-0 [] Subdevices: 1/1 Subdevice #0: subdevice #0
alsamixer doenst show any controls.
In desktop-mode the system seems to use PulseAudio, but did only found a Dummy-Device and not the mesongxaudio.
Do I miss some setting?
-
1 hour ago, Hijax said:
And works for me. I have created set of regular & mini bionic images for pineh64 and rock64.
The thing I am struggling with is that latest kernels do not boot :/
compile did also work here for Opi One & NanoPi K1 Plus
( I did insert the } at line 69 by myself - will revert tomorrow and see when getting the "new" file)
Today there is for me no time more to test the boot.
@Hijax Latest Kernel are only 5.2 or also 5.1?
-
Fine - will test it then with my Odroid C2 with S905
(Amlogic S905 = Meson64 - I dont know why I every time mix up Meson64 with a A64 CPU in my mind
)
-
4 hours ago, abigailrose said:
I can't connect via serial console either. I have a USB/TTL cable (tested the cable to make sure it works by shorting white to green
I dont know which one of the green/white cable is RX and which is TX, but the have to cross-connect
RX -> TX
TX -> RX and
GND -> GND
If your adapter does support it (via jumper setting), set it to 3.3V and your terminal program to 115.200 Baud
-
-
1 hour ago, Igor said:
Try now ...
Now deboostrap is changed also for normal build and perhaps something important is missing.
may there be a error in ./build-mini/lib/debootstrap.sh in the mini-branch?
(master branch doenst give me that error)
Already up to date.
Already on 'mini'
Your branch is up to date with 'origin/mini'.
/home/guido/build-mini/lib/debootstrap.sh: line 378: syntax error near unexpected token `;;'
/home/guido/build-mini/lib/debootstrap.sh: line 378: ` ;;'
[ o.k. ] Preparing [ host ]
[ o.k. ] Build host OS release [ bionic ]
[ o.k. ] Syncing clock [ host ]# stage: calculate rootfs size local rootfs_size=$(du -sm $SDCARD/ | cut -f1) # MiB display_alert "Current rootfs size" "$rootfs_size MiB" "info" if [[ -n $FIXED_IMAGE_SIZE && $FIXED_IMAGE_SIZE =~ ^[0-9]+$ ]]; then display_alert "Using user-defined image size" "$FIXED_IMAGE_SIZE MiB" "info" local sdsize=$FIXED_IMAGE_SIZE # basic sanity check if [[ $ROOTFS_TYPE != nfs && $sdsize -lt $rootfs_size ]]; then exit_with_error "User defined image size is too small" "$sdsize <= $rootfs_size" fi else local imagesize=$(( $rootfs_size + $OFFSET + $BOOTSIZE )) # MiB case $ROOTFS_TYPE in btrfs) # Used for server images, currently no swap functionality, so disk space # requirements are rather low since rootfs gets filled with compress-force=zlib local sdsize=$(bc -l <<< "scale=0; (($imagesize * 0.8) / 4 + 1) * 4") ;; <<== Line 378 *) # Hardcoded overhead +25% is needed for desktop images, # for CLI it could be lower. Align the size up to 4MiB if [[ $BUILD_DESKTOP == yes ]]; then local sdsize=$(bc -l <<< "scale=0; ((($imagesize * 1.30) / 1 + 0) / 4 + 1$ else local sdsize=$(bc -l <<< "scale=0; ((($imagesize * 1.25) / 1 + 0) / 4 + 1$ fi ;; esac fi -
13 minutes ago, Hijax said:
Good luck! I have compiled dozen of configurations using 4 systems. All went well.
got the same error - I think I will give up for now

I edited the part this style in configuration.sh:
# For minimal build different set of packages is needed if [[ $BUILD_MINIMAL == yes ]]; then # Essential packages for minimal build PACKAGE_LIST="bc cpufrequtils device-tree-compiler fping \ fake-hwclock psmisc ntp parted linux-base dialog \ ncurses-term sysfsutils toilet u-boot-tools \ usbutils resolvconf console-setup openssh-server initramfs-tools \ <<== Line 171 ca-certificates nocache debconf-utils" # Non-essential packages for minimal build PACKAGE_LIST_ADDITIONAL="network-manager cron lsof htop vim mmc-utils rsyslog" fi -
10 minutes ago, Hijax said:
The link I have provided points to line # 171
Opps
- I missed the #171 in the link.
I inserted resolvconf there now and restart with a new compile
-
2 minutes ago, Hijax said:
Yeap, but please modify that line to put there resolvconf
where (which line) is there?
-
4 minutes ago, Hijax said:
For example here: https://github.com/armbian/build/blob/4b8ce083771800bc1fcb3d284856cc15f5a2c25e/lib/configuration.sh#L171
Actually I do not know what happens in your build environment. Can you please include console log with this error and surroundings?
seems that I have the "right" configuration.sh already:
wget https://raw.githubusercontent.com/armbian/build/4b8ce083771800bc1fcb3d284856cc15f5a2c25e/lib/configuration.sh Saving to: ‘configuration.sh.1’ configuration.sh.1 100%[============================================>] 13.30K --.-KB/s in 0.06s 2019-07-22 20:30:52 (215 KB/s) - ‘configuration.sh.1’ saved [13615/13615] root@core2duo(192.168.6.19):/home/guido/build-mini/lib# cmp ./configuration.sh configuration.sh.1 root@core2duo(192.168.6.19):/home/guido/build-mini/lib# ls -l confi* -rw-r--r-- 1 root root 13615 Jul 22 16:23 configuration.sh -rw-r--r-- 1 root root 13615 Jul 22 20:30 configuration.sh.1
This is the only part of the console-log I got:
SpoilerINSTALL drivers/net/ipvlan/ipvlan.ko
INSTALL drivers/net/macsec.ko
INSTALL drivers/net/macvlan.ko
INSTALL drivers/net/macvtap.ko
INSTALL drivers/net/net_failover.ko
INSTALL drivers/net/netdevsim/netdevsim.ko
INSTALL drivers/net/phy/amd.ko
INSTALL drivers/net/phy/aquantia.ko
INSTALL drivers/net/phy/at803x.ko
INSTALL drivers/net/phy/bcm-phy-lib.ko
INSTALL drivers/net/phy/bcm87xx.ko
INSTALL drivers/net/phy/broadcom.ko
INSTALL drivers/net/phy/cicada.ko
INSTALL drivers/net/phy/davicom.ko
INSTALL drivers/net/phy/dp83848.ko
INSTALL drivers/net/phy/dp83tc811.ko
INSTALL drivers/net/phy/et1011c.ko
INSTALL drivers/net/phy/icplus.ko
INSTALL drivers/net/phy/lxt.ko
INSTALL drivers/net/phy/marvell.ko
INSTALL drivers/net/phy/mdio-mux-multiplexer.ko
INSTALL drivers/net/phy/micrel.ko
INSTALL drivers/net/phy/microchip.ko
INSTALL drivers/net/phy/microchip_t1.ko
INSTALL drivers/net/phy/national.ko
INSTALL drivers/net/phy/phylink.ko
INSTALL drivers/net/phy/qsemi.ko
INSTALL drivers/net/phy/realtek.ko
INSTALL drivers/net/phy/smsc.ko
INSTALL drivers/net/phy/ste10Xp.ko
INSTALL drivers/net/phy/teranetics.ko
INSTALL drivers/net/phy/vitesse.ko
INSTALL drivers/net/ppp/bsd_comp.ko
INSTALL drivers/net/ppp/ppp_async.ko
INSTALL drivers/net/ppp/ppp_deflate.ko
INSTALL drivers/net/ppp/ppp_generic.ko
INSTALL drivers/net/ppp/ppp_mppe.ko
INSTALL drivers/net/ppp/ppp_synctty.ko
INSTALL drivers/net/ppp/pppoe.ko
INSTALL drivers/net/ppp/pppox.ko
INSTALL drivers/net/ppp/pptp.ko
INSTALL drivers/net/slip/slhc.ko
INSTALL drivers/net/slip/slip.ko
INSTALL drivers/net/tap.ko
INSTALL drivers/net/tun.ko
INSTALL drivers/net/usb/aqc111.ko
INSTALL drivers/net/usb/asix.ko
INSTALL drivers/net/usb/ax88179_178a.ko
INSTALL drivers/net/usb/catc.ko
INSTALL drivers/net/usb/cdc_eem.ko
INSTALL drivers/net/usb/cdc_ether.ko
INSTALL drivers/net/usb/cdc_mbim.ko
INSTALL drivers/net/usb/cdc_ncm.ko
INSTALL drivers/net/usb/cdc_subset.ko
INSTALL drivers/net/usb/ch9200.ko
INSTALL drivers/net/usb/cx82310_eth.ko
INSTALL drivers/net/usb/dm9601.ko
INSTALL drivers/net/usb/gl620a.ko
INSTALL drivers/net/usb/hso.ko
INSTALL drivers/net/usb/huawei_cdc_ncm.ko
INSTALL drivers/net/usb/int51x1.ko
INSTALL drivers/net/usb/ipheth.ko
INSTALL drivers/net/usb/kalmia.ko
INSTALL drivers/net/usb/kaweth.ko
INSTALL drivers/net/usb/lan78xx.ko
INSTALL drivers/net/usb/lg-vl600.ko
INSTALL drivers/net/usb/mcs7830.ko
INSTALL drivers/net/usb/net1080.ko
INSTALL drivers/net/usb/pegasus.ko
INSTALL drivers/net/usb/plusb.ko
INSTALL drivers/net/usb/qmi_wwan.ko
INSTALL drivers/net/usb/r8152.ko
INSTALL drivers/net/usb/rndis_host.ko
INSTALL drivers/net/usb/rtl8150.ko
INSTALL drivers/net/usb/sierra_net.ko
INSTALL drivers/net/usb/smsc75xx.ko
INSTALL drivers/net/usb/smsc95xx.ko
INSTALL drivers/net/usb/sr9700.ko
INSTALL drivers/net/usb/sr9800.ko
INSTALL drivers/net/usb/usbnet.ko
INSTALL drivers/net/usb/zaurus.ko
INSTALL drivers/net/veth.ko
INSTALL drivers/net/vrf.ko
INSTALL drivers/net/vxlan.ko
INSTALL drivers/net/wireless/ath/ar5523/ar5523.ko
INSTALL drivers/net/wireless/ath/ath.ko
INSTALL drivers/net/wireless/ath/ath10k/ath10k_core.ko
INSTALL drivers/net/wireless/ath/ath6kl/ath6kl_core.ko
INSTALL drivers/net/wireless/ath/ath6kl/ath6kl_sdio.ko
INSTALL drivers/net/wireless/ath/ath6kl/ath6kl_usb.ko
INSTALL drivers/net/wireless/ath/ath9k/ath9k.ko
INSTALL drivers/net/wireless/ath/ath9k/ath9k_common.ko
INSTALL drivers/net/wireless/ath/ath9k/ath9k_htc.ko
INSTALL drivers/net/wireless/ath/ath9k/ath9k_hw.ko
INSTALL drivers/net/wireless/ath/carl9170/carl9170.ko
INSTALL drivers/net/wireless/atmel/at76c50x-usb.ko
INSTALL drivers/net/wireless/broadcom/b43/b43.ko
INSTALL drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.ko
INSTALL drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcmsmac.ko
INSTALL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.ko
INSTALL drivers/net/wireless/mac80211_hwsim.ko
INSTALL drivers/net/wireless/marvell/libertas_tf/libertas_tf.ko
INSTALL drivers/net/wireless/marvell/libertas_tf/libertas_tf_usb.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76-usb.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0u.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76x02-lib.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76x02-usb.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common.ko
INSTALL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2u.ko
INSTALL drivers/net/wireless/mediatek/mt7601u/mt7601u.ko
INSTALL drivers/net/wireless/ralink/rt2x00/rt2500usb.ko
INSTALL drivers/net/wireless/ralink/rt2x00/rt2800lib.ko
INSTALL drivers/net/wireless/ralink/rt2x00/rt2800usb.ko
INSTALL drivers/net/wireless/ralink/rt2x00/rt2x00lib.ko
INSTALL drivers/net/wireless/ralink/rt2x00/rt2x00usb.ko
INSTALL drivers/net/wireless/ralink/rt2x00/rt73usb.ko
INSTALL drivers/net/wireless/realtek/rtl8189fs/8189fs.ko
INSTALL drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8187.ko
INSTALL drivers/net/wireless/realtek/rtl8723cs/8723cs.ko
INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.ko
INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.ko
INSTALL drivers/net/wireless/realtek/rtlwifi/rtl_usb.ko
INSTALL drivers/net/wireless/realtek/rtlwifi/rtlwifi.ko
INSTALL drivers/net/wireless/rndis_wlan.ko
INSTALL drivers/net/wireless/rtl8188eu/8188eu.ko
INSTALL drivers/net/wireless/rtl8189es/8189es.ko
INSTALL drivers/net/wireless/rtl8812au/88XXau.ko
INSTALL drivers/net/wireless/rtl88x2bu/88x2bu.ko
INSTALL drivers/net/wireless/xradio/xradio_wlan.ko
INSTALL drivers/nvme/host/nvme-core.ko
INSTALL drivers/nvme/host/nvme-fabrics.ko
INSTALL drivers/nvme/target/nvme-loop.ko
INSTALL drivers/nvme/target/nvmet-tcp.ko
INSTALL drivers/nvme/target/nvmet.ko
INSTALL drivers/parport/parport.ko
INSTALL drivers/parport/parport_ax88796.ko
INSTALL drivers/phy/allwinner/phy-sun50i-usb3.ko
INSTALL drivers/phy/allwinner/phy-sun6i-mipi-dphy.ko
INSTALL drivers/phy/cadence/cdns-dphy.ko
INSTALL drivers/phy/cadence/phy-cadence-dp.ko
INSTALL drivers/phy/cadence/phy-cadence-sierra.ko
INSTALL drivers/phy/freescale/phy-fsl-imx8mq-usb.ko
INSTALL drivers/phy/mscc/phy-ocelot-serdes.ko
INSTALL drivers/phy/qualcomm/phy-qcom-usb-hs.ko
INSTALL drivers/phy/samsung/phy-exynos-usb2.ko
INSTALL drivers/pinctrl/cirrus/pinctrl-madera.ko
INSTALL drivers/pinctrl/pinctrl-axp209.ko
INSTALL drivers/power/supply/adp5061.ko
INSTALL drivers/power/supply/axp20x_battery.ko
INSTALL drivers/power/supply/axp20x_usb_power.ko
INSTALL drivers/power/supply/axp288_fuel_gauge.ko
INSTALL drivers/power/supply/cpcap-battery.ko
INSTALL drivers/power/supply/ds2760_battery.ko
INSTALL drivers/power/supply/max14656_charger_detector.ko
INSTALL drivers/power/supply/sbs-charger.ko
INSTALL drivers/pps/clients/pps-gpio.ko
INSTALL drivers/pps/clients/pps-ldisc.ko
INSTALL drivers/pwm/pwm-sun4i.ko
INSTALL drivers/regulator/bd718x7-regulator.ko
INSTALL drivers/regulator/cpcap-regulator.ko
INSTALL drivers/regulator/mcp16502.ko
INSTALL drivers/regulator/pwm-regulator.ko
INSTALL drivers/regulator/stpmic1_regulator.ko
INSTALL drivers/regulator/sy8106a-regulator.ko
INSTALL drivers/rtc/rtc-ab-eoz9.ko
INSTALL drivers/rtc/rtc-cadence.ko
INSTALL drivers/rtc/rtc-cpcap.ko
INSTALL drivers/rtc/rtc-ds1307.ko
INSTALL drivers/rtc/rtc-isl12026.ko
INSTALL drivers/rtc/rtc-pcf8563.ko
INSTALL drivers/rtc/rtc-rv3028.ko
INSTALL drivers/rtc/rtc-sd3078.ko
INSTALL drivers/scsi/ch.ko
INSTALL drivers/scsi/iscsi_tcp.ko
INSTALL drivers/scsi/libiscsi.ko
INSTALL drivers/scsi/libiscsi_tcp.ko
INSTALL drivers/scsi/raid_class.ko
INSTALL drivers/scsi/scsi_transport_iscsi.ko
INSTALL drivers/scsi/sr_mod.ko
INSTALL drivers/spi/spi-mxic.ko
INSTALL drivers/spi/spi-nxp-fspi.ko
INSTALL drivers/spi/spi-sifive.ko
INSTALL drivers/spi/spidev.ko
INSTALL drivers/ssb/ssb.ko
INSTALL drivers/staging/axis-fifo/axis-fifo.ko
INSTALL drivers/staging/erofs/erofs.ko
INSTALL drivers/staging/fbtft/fb_agm1264k-fl.ko
INSTALL drivers/staging/fbtft/fb_bd663474.ko
INSTALL drivers/staging/fbtft/fb_hx8340bn.ko
INSTALL drivers/staging/fbtft/fb_hx8347d.ko
INSTALL drivers/staging/fbtft/fb_hx8353d.ko
INSTALL drivers/staging/fbtft/fb_hx8357d.ko
INSTALL drivers/staging/fbtft/fb_ili9163.ko
INSTALL drivers/staging/fbtft/fb_ili9320.ko
INSTALL drivers/staging/fbtft/fb_ili9325.ko
INSTALL drivers/staging/fbtft/fb_ili9340.ko
INSTALL drivers/staging/fbtft/fb_ili9341.ko
INSTALL drivers/staging/fbtft/fb_ili9481.ko
INSTALL drivers/staging/fbtft/fb_ili9486.ko
INSTALL drivers/staging/fbtft/fb_pcd8544.ko
INSTALL drivers/staging/fbtft/fb_ra8875.ko
INSTALL drivers/staging/fbtft/fb_s6d02a1.ko
INSTALL drivers/staging/fbtft/fb_s6d1121.ko
INSTALL drivers/staging/fbtft/fb_sh1106.ko
INSTALL drivers/staging/fbtft/fb_ssd1289.ko
INSTALL drivers/staging/fbtft/fb_ssd1305.ko
INSTALL drivers/staging/fbtft/fb_ssd1306.ko
INSTALL drivers/staging/fbtft/fb_ssd1325.ko
INSTALL drivers/staging/fbtft/fb_ssd1331.ko
INSTALL drivers/staging/fbtft/fb_ssd1351.ko
INSTALL drivers/staging/fbtft/fb_st7735r.ko
INSTALL drivers/staging/fbtft/fb_st7789v.ko
INSTALL drivers/staging/fbtft/fb_tinylcd.ko
INSTALL drivers/staging/fbtft/fb_tls8204.ko
INSTALL drivers/staging/fbtft/fb_uc1611.ko
INSTALL drivers/staging/fbtft/fb_uc1701.ko
INSTALL drivers/staging/fbtft/fb_upd161704.ko
INSTALL drivers/staging/fbtft/fb_watterott.ko
INSTALL drivers/staging/fbtft/fbtft.ko
INSTALL drivers/staging/fbtft/fbtft_device.ko
INSTALL drivers/staging/fbtft/flexfb.ko
INSTALL drivers/staging/iio/frequency/ad9832.ko
INSTALL drivers/staging/iio/frequency/ad9834.ko
INSTALL drivers/staging/media/bcm2048/radio-bcm2048.ko
INSTALL drivers/staging/most/most_core.ko
INSTALL drivers/staging/rtl8188eu/r8188eu.ko
INSTALL drivers/staging/rtl8712/r8712u.ko
INSTALL drivers/staging/rtl8723bs/r8723bs.ko
INSTALL drivers/target/iscsi/iscsi_target_mod.ko
INSTALL drivers/target/loopback/tcm_loop.ko
INSTALL drivers/target/target_core_file.ko
INSTALL drivers/target/target_core_iblock.ko
INSTALL drivers/target/target_core_mod.ko
INSTALL drivers/target/target_core_pscsi.ko
INSTALL drivers/target/target_core_user.ko
INSTALL drivers/tee/optee/optee.ko
INSTALL drivers/tee/tee.ko
INSTALL drivers/thermal/sun50i_h6_ths.ko
INSTALL drivers/thermal/sun8i_ths.ko
INSTALL drivers/thermal/thermal-generic-adc.ko
INSTALL drivers/tty/serdev/serdev.ko
INSTALL drivers/tty/serial/digicolor-usart.ko
INSTALL drivers/tty/serial/sc16is7xx.ko
INSTALL drivers/tty/serial/uartlite.ko
INSTALL drivers/uio/uio.ko
INSTALL drivers/uio/uio_dmem_genirq.ko
INSTALL drivers/uio/uio_pdrv_genirq.ko
INSTALL drivers/usb/class/cdc-acm.ko
INSTALL drivers/usb/class/cdc-wdm.ko
INSTALL drivers/usb/class/usblp.ko
INSTALL drivers/usb/class/usbtmc.ko
INSTALL drivers/usb/common/ulpi.ko
INSTALL drivers/usb/dwc3/dwc3-of-simple.ko
INSTALL drivers/usb/gadget/function/u_audio.ko
INSTALL drivers/usb/gadget/function/u_ether.ko
INSTALL drivers/usb/gadget/function/u_serial.ko
INSTALL drivers/usb/gadget/function/usb_f_acm.ko
INSTALL drivers/usb/gadget/function/usb_f_ecm.ko
INSTALL drivers/usb/gadget/function/usb_f_ecm_subset.ko
INSTALL drivers/usb/gadget/function/usb_f_eem.ko
INSTALL drivers/usb/gadget/function/usb_f_hid.ko
INSTALL drivers/usb/gadget/function/usb_f_mass_storage.ko
INSTALL drivers/usb/gadget/function/usb_f_ncm.ko
INSTALL drivers/usb/gadget/function/usb_f_obex.ko
INSTALL drivers/usb/gadget/function/usb_f_printer.ko
INSTALL drivers/usb/gadget/function/usb_f_rndis.ko
INSTALL drivers/usb/gadget/function/usb_f_serial.ko
INSTALL drivers/usb/gadget/function/usb_f_uac1.ko
INSTALL drivers/usb/gadget/function/usb_f_uvc.ko
INSTALL drivers/usb/gadget/legacy/g_acm_ms.ko
INSTALL drivers/usb/gadget/legacy/g_audio.ko
INSTALL drivers/usb/gadget/legacy/g_cdc.ko
INSTALL drivers/usb/gadget/legacy/g_ether.ko
INSTALL drivers/usb/gadget/legacy/g_hid.ko
INSTALL drivers/usb/gadget/legacy/g_mass_storage.ko
INSTALL drivers/usb/gadget/legacy/g_multi.ko
INSTALL drivers/usb/gadget/legacy/g_ncm.ko
INSTALL drivers/usb/gadget/legacy/g_printer.ko
INSTALL drivers/usb/gadget/legacy/g_serial.ko
INSTALL drivers/usb/gadget/legacy/g_webcam.ko
INSTALL drivers/usb/gadget/legacy/gadgetfs.ko
INSTALL drivers/usb/gadget/libcomposite.ko
INSTALL drivers/usb/host/ehci-fsl.ko
INSTALL drivers/usb/host/fsl-mph-dr-of.ko
INSTALL drivers/usb/misc/chaoskey.ko
INSTALL drivers/usb/misc/ezusb.ko
INSTALL drivers/usb/misc/usb251xb.ko
INSTALL drivers/usb/mon/usbmon.ko
INSTALL drivers/usb/roles/roles.ko
INSTALL drivers/usb/serial/aircable.ko
INSTALL drivers/usb/serial/ark3116.ko
INSTALL drivers/usb/serial/belkin_sa.ko
INSTALL drivers/usb/serial/ch341.ko
INSTALL drivers/usb/serial/cp210x.ko
INSTALL drivers/usb/serial/cyberjack.ko
INSTALL drivers/usb/serial/cypress_m8.ko
INSTALL drivers/usb/serial/digi_acceleport.ko
INSTALL drivers/usb/serial/empeg.ko
INSTALL drivers/usb/serial/f81232.ko
INSTALL drivers/usb/serial/ftdi_sio.ko
INSTALL drivers/usb/serial/garmin_gps.ko
INSTALL drivers/usb/serial/io_edgeport.ko
INSTALL drivers/usb/serial/io_ti.ko
INSTALL drivers/usb/serial/ipaq.ko
INSTALL drivers/usb/serial/ipw.ko
INSTALL drivers/usb/serial/ir-usb.ko
INSTALL drivers/usb/serial/iuu_phoenix.ko
INSTALL drivers/usb/serial/keyspan.ko
INSTALL drivers/usb/serial/keyspan_pda.ko
INSTALL drivers/usb/serial/kl5kusb105.ko
INSTALL drivers/usb/serial/kobil_sct.ko
INSTALL drivers/usb/serial/mct_u232.ko
INSTALL drivers/usb/serial/metro-usb.ko
INSTALL drivers/usb/serial/mos7720.ko
INSTALL drivers/usb/serial/mos7840.ko
INSTALL drivers/usb/serial/mxuport.ko
INSTALL drivers/usb/serial/navman.ko
INSTALL drivers/usb/serial/omninet.ko
INSTALL drivers/usb/serial/opticon.ko
INSTALL drivers/usb/serial/option.ko
INSTALL drivers/usb/serial/oti6858.ko
INSTALL drivers/usb/serial/pl2303.ko
INSTALL drivers/usb/serial/qcaux.ko
INSTALL drivers/usb/serial/qcserial.ko
INSTALL drivers/usb/serial/quatech2.ko
INSTALL drivers/usb/serial/safe_serial.ko
INSTALL drivers/usb/serial/sierra.ko
INSTALL drivers/usb/serial/spcp8x5.ko
INSTALL drivers/usb/serial/ssu100.ko
INSTALL drivers/usb/serial/symbolserial.ko
INSTALL drivers/usb/serial/ti_usb_3410_5052.ko
INSTALL drivers/usb/serial/upd78f0730.ko
INSTALL drivers/usb/serial/usb-serial-simple.ko
INSTALL drivers/usb/serial/usb_debug.ko
INSTALL drivers/usb/serial/usb_wwan.ko
INSTALL drivers/usb/serial/usbserial.ko
INSTALL drivers/usb/serial/visor.ko
INSTALL drivers/usb/serial/whiteheat.ko
INSTALL drivers/usb/serial/wishbone-serial.ko
INSTALL drivers/usb/serial/xsens_mt.ko
INSTALL drivers/usb/storage/uas.ko
INSTALL drivers/usb/usbip/usbip-core.ko
INSTALL drivers/usb/usbip/usbip-host.ko
INSTALL drivers/usb/usbip/usbip-vudc.ko
INSTALL drivers/usb/usbip/vhci-hcd.ko
INSTALL drivers/video/backlight/generic_bl.ko
INSTALL drivers/video/backlight/lcd.ko
INSTALL drivers/video/backlight/pwm_bl.ko
INSTALL drivers/w1/masters/w1-gpio.ko
INSTALL drivers/w1/slaves/w1_ds2405.ko
INSTALL drivers/w1/slaves/w1_ds2406.ko
INSTALL drivers/w1/slaves/w1_ds2408.ko
INSTALL drivers/w1/slaves/w1_ds2413.ko
INSTALL drivers/w1/slaves/w1_ds2423.ko
INSTALL drivers/w1/slaves/w1_ds2431.ko
INSTALL drivers/w1/slaves/w1_ds2433.ko
INSTALL drivers/w1/slaves/w1_smem.ko
INSTALL drivers/w1/slaves/w1_therm.ko
INSTALL drivers/w1/wire.ko
INSTALL drivers/watchdog/ftwdt010_wdt.ko
INSTALL drivers/watchdog/gpio_wdt.ko
INSTALL fs/binfmt_misc.ko
INSTALL fs/ceph/ceph.ko
INSTALL fs/cifs/cifs.ko
INSTALL fs/ecryptfs/ecryptfs.ko
INSTALL fs/fscache/fscache.ko
INSTALL fs/fuse/cuse.ko
INSTALL fs/fuse/fuse.ko
INSTALL fs/hfs/hfs.ko
INSTALL fs/hfsplus/hfsplus.ko
INSTALL fs/jffs2/jffs2.ko
INSTALL fs/nfs/blocklayout/blocklayoutdriver.ko
INSTALL fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko
INSTALL fs/ntfs/ntfs.ko
INSTALL fs/overlayfs/overlay.ko
INSTALL fs/quota/quota_tree.ko
INSTALL fs/quota/quota_v1.ko
INSTALL fs/quota/quota_v2.ko
INSTALL fs/reiserfs/reiserfs.ko
INSTALL fs/squashfs/squashfs.ko
INSTALL kernel/locking/test-ww_mutex.ko
INSTALL lib/842/842_compress.ko
INSTALL lib/842/842_decompress.ko
INSTALL lib/crc4.ko
INSTALL lib/crc64.ko
INSTALL lib/crc7.ko
INSTALL lib/crc8.ko
INSTALL lib/lz4/lz4_compress.ko
INSTALL lib/lz4/lz4hc_compress.ko
INSTALL lib/math/cordic.ko
INSTALL lib/test_hexdump.ko
INSTALL lib/test_ida.ko
INSTALL lib/test_memcat_p.ko
INSTALL lib/test_overflow.ko
INSTALL lib/test_vmalloc.ko
INSTALL lib/test_xarray.ko
INSTALL lib/ts_bm.ko
INSTALL lib/ts_fsm.ko
INSTALL lib/ts_kmp.ko
INSTALL net/6lowpan/6lowpan.ko
INSTALL net/6lowpan/nhc_dest.ko
INSTALL net/6lowpan/nhc_fragment.ko
INSTALL net/6lowpan/nhc_hop.ko
INSTALL net/6lowpan/nhc_ipv6.ko
INSTALL net/6lowpan/nhc_mobility.ko
INSTALL net/6lowpan/nhc_routing.ko
INSTALL net/6lowpan/nhc_udp.ko
INSTALL net/appletalk/appletalk.ko
INSTALL net/atm/atm.ko
INSTALL net/atm/br2684.ko
INSTALL net/atm/clip.ko
INSTALL net/ax25/ax25.ko
INSTALL net/batman-adv/batman-adv.ko
INSTALL net/bluetooth/bluetooth.ko
INSTALL net/bluetooth/bnep/bnep.ko
INSTALL net/bluetooth/hidp/hidp.ko
INSTALL net/bluetooth/rfcomm/rfcomm.ko
INSTALL net/bridge/br_netfilter.ko
INSTALL net/bridge/netfilter/ebt_802_3.ko
INSTALL net/bridge/netfilter/ebt_among.ko
INSTALL net/bridge/netfilter/ebt_arp.ko
INSTALL net/bridge/netfilter/ebt_arpreply.ko
INSTALL net/bridge/netfilter/ebt_dnat.ko
INSTALL net/bridge/netfilter/ebt_ip.ko
INSTALL net/bridge/netfilter/ebt_ip6.ko
INSTALL net/bridge/netfilter/ebt_limit.ko
INSTALL net/bridge/netfilter/ebt_log.ko
INSTALL net/bridge/netfilter/ebt_mark.ko
INSTALL net/bridge/netfilter/ebt_mark_m.ko
INSTALL net/bridge/netfilter/ebt_nflog.ko
INSTALL net/bridge/netfilter/ebt_pkttype.ko
INSTALL net/bridge/netfilter/ebt_redirect.ko
INSTALL net/bridge/netfilter/ebt_snat.ko
INSTALL net/bridge/netfilter/ebt_stp.ko
INSTALL net/bridge/netfilter/ebt_vlan.ko
INSTALL net/bridge/netfilter/ebtable_broute.ko
INSTALL net/bridge/netfilter/ebtable_filter.ko
INSTALL net/bridge/netfilter/ebtable_nat.ko
INSTALL net/bridge/netfilter/ebtables.ko
INSTALL net/bridge/netfilter/nf_log_bridge.ko
INSTALL net/bridge/netfilter/nft_reject_bridge.ko
INSTALL net/can/can-bcm.ko
INSTALL net/can/can-gw.ko
INSTALL net/can/can-raw.ko
INSTALL net/can/can.ko
INSTALL net/ceph/libceph.ko
INSTALL net/core/failover.ko
INSTALL net/core/pktgen.ko
INSTALL net/dccp/dccp.ko
INSTALL net/dccp/dccp_diag.ko
INSTALL net/dccp/dccp_ipv4.ko
INSTALL net/dccp/dccp_ipv6.ko
INSTALL net/dsa/dsa_core.ko
INSTALL net/dsa/tag_brcm.ko
INSTALL net/dsa/tag_gswip.ko
INSTALL net/dsa/tag_ksz.ko
INSTALL net/hsr/hsr.ko
INSTALL net/ife/ife.ko
INSTALL net/ipv4/ah4.ko
INSTALL net/ipv4/esp4.ko
INSTALL net/ipv4/esp4_offload.ko
INSTALL net/ipv4/gre.ko
INSTALL net/ipv4/inet_diag.ko
INSTALL net/ipv4/ip_gre.ko
INSTALL net/ipv4/ip_tunnel.ko
INSTALL net/ipv4/ipcomp.ko
INSTALL net/ipv4/ipip.ko
INSTALL net/ipv4/netfilter/arp_tables.ko
INSTALL net/ipv4/netfilter/arpt_mangle.ko
INSTALL net/ipv4/netfilter/arptable_filter.ko
INSTALL net/ipv4/netfilter/ip_tables.ko
INSTALL net/ipv4/netfilter/ipt_CLUSTERIP.ko
INSTALL net/ipv4/netfilter/ipt_ECN.ko
INSTALL net/ipv4/netfilter/ipt_REJECT.ko
INSTALL net/ipv4/netfilter/ipt_SYNPROXY.ko
INSTALL net/ipv4/netfilter/ipt_ah.ko
INSTALL net/ipv4/netfilter/ipt_rpfilter.ko
INSTALL net/ipv4/netfilter/iptable_filter.ko
INSTALL net/ipv4/netfilter/iptable_mangle.ko
INSTALL net/ipv4/netfilter/iptable_nat.ko
INSTALL net/ipv4/netfilter/iptable_raw.ko
INSTALL net/ipv4/netfilter/nf_defrag_ipv4.ko
INSTALL net/ipv4/netfilter/nf_dup_ipv4.ko
INSTALL net/ipv4/netfilter/nf_flow_table_ipv4.ko
INSTALL net/ipv4/netfilter/nf_log_arp.ko
INSTALL net/ipv4/netfilter/nf_log_ipv4.ko
INSTALL net/ipv4/netfilter/nf_nat_h323.ko
INSTALL net/ipv4/netfilter/nf_nat_pptp.ko
INSTALL net/ipv4/netfilter/nf_nat_snmp_basic.ko
INSTALL net/ipv4/netfilter/nf_reject_ipv4.ko
INSTALL net/ipv4/netfilter/nf_socket_ipv4.ko
INSTALL net/ipv4/netfilter/nf_tproxy_ipv4.ko
INSTALL net/ipv4/netfilter/nft_dup_ipv4.ko
INSTALL net/ipv4/netfilter/nft_fib_ipv4.ko
INSTALL net/ipv4/netfilter/nft_reject_ipv4.ko
INSTALL net/ipv4/tcp_diag.ko
INSTALL net/ipv4/tunnel4.ko
INSTALL net/ipv4/udp_diag.ko
INSTALL net/ipv4/udp_tunnel.ko
INSTALL net/ipv4/xfrm4_tunnel.ko
INSTALL net/ipv6/ah6.ko
INSTALL net/ipv6/esp6.ko
INSTALL net/ipv6/esp6_offload.ko
INSTALL net/ipv6/ila/ila.ko
INSTALL net/ipv6/ip6_tunnel.ko
INSTALL net/ipv6/ip6_udp_tunnel.ko
INSTALL net/ipv6/ipcomp6.ko
INSTALL net/ipv6/mip6.ko
INSTALL net/ipv6/netfilter/ip6_tables.ko
INSTALL net/ipv6/netfilter/ip6t_NPT.ko
INSTALL net/ipv6/netfilter/ip6t_REJECT.ko
INSTALL net/ipv6/netfilter/ip6t_SYNPROXY.ko
INSTALL net/ipv6/netfilter/ip6t_ah.ko
INSTALL net/ipv6/netfilter/ip6t_eui64.ko
INSTALL net/ipv6/netfilter/ip6t_frag.ko
INSTALL net/ipv6/netfilter/ip6t_hbh.ko
INSTALL net/ipv6/netfilter/ip6t_ipv6header.ko
INSTALL net/ipv6/netfilter/ip6t_mh.ko
INSTALL net/ipv6/netfilter/ip6t_rpfilter.ko
INSTALL net/ipv6/netfilter/ip6t_rt.ko
INSTALL net/ipv6/netfilter/ip6t_srh.ko
INSTALL net/ipv6/netfilter/ip6table_filter.ko
INSTALL net/ipv6/netfilter/ip6table_mangle.ko
INSTALL net/ipv6/netfilter/ip6table_nat.ko
INSTALL net/ipv6/netfilter/ip6table_raw.ko
INSTALL net/ipv6/netfilter/nf_defrag_ipv6.ko
INSTALL net/ipv6/netfilter/nf_dup_ipv6.ko
INSTALL net/ipv6/netfilter/nf_flow_table_ipv6.ko
INSTALL net/ipv6/netfilter/nf_log_ipv6.ko
INSTALL net/ipv6/netfilter/nf_reject_ipv6.ko
INSTALL net/ipv6/netfilter/nf_socket_ipv6.ko
INSTALL net/ipv6/netfilter/nf_tproxy_ipv6.ko
INSTALL net/ipv6/netfilter/nft_dup_ipv6.ko
INSTALL net/ipv6/netfilter/nft_fib_ipv6.ko
INSTALL net/ipv6/netfilter/nft_reject_ipv6.ko
INSTALL net/ipv6/sit.ko
INSTALL net/ipv6/tunnel6.ko
INSTALL net/ipv6/xfrm6_tunnel.ko
INSTALL net/kcm/kcm.ko
INSTALL net/l2tp/l2tp_core.ko
INSTALL net/l2tp/l2tp_eth.ko
INSTALL net/l2tp/l2tp_ip.ko
INSTALL net/l2tp/l2tp_ip6.ko
INSTALL net/l2tp/l2tp_netlink.ko
INSTALL net/l2tp/l2tp_ppp.ko
INSTALL net/mac80211/mac80211.ko
INSTALL net/mpls/mpls_gso.ko
INSTALL net/netfilter/ipset/ip_set.ko
INSTALL net/netfilter/ipset/ip_set_bitmap_ip.ko
INSTALL net/netfilter/ipset/ip_set_bitmap_ipmac.ko
INSTALL net/netfilter/ipset/ip_set_bitmap_port.ko
INSTALL net/netfilter/ipset/ip_set_hash_ip.ko
INSTALL net/netfilter/ipset/ip_set_hash_ipmac.ko
INSTALL net/netfilter/ipset/ip_set_hash_ipmark.ko
INSTALL net/netfilter/ipset/ip_set_hash_ipport.ko
INSTALL net/netfilter/ipset/ip_set_hash_ipportip.ko
INSTALL net/netfilter/ipset/ip_set_hash_ipportnet.ko
INSTALL net/netfilter/ipset/ip_set_hash_mac.ko
INSTALL net/netfilter/ipset/ip_set_hash_net.ko
INSTALL net/netfilter/ipset/ip_set_hash_netiface.ko
INSTALL net/netfilter/ipset/ip_set_hash_netnet.ko
INSTALL net/netfilter/ipset/ip_set_hash_netport.ko
INSTALL net/netfilter/ipset/ip_set_hash_netportnet.ko
INSTALL net/netfilter/ipset/ip_set_list_set.ko
INSTALL net/netfilter/ipvs/ip_vs.ko
INSTALL net/netfilter/ipvs/ip_vs_dh.ko
INSTALL net/netfilter/ipvs/ip_vs_fo.ko
INSTALL net/netfilter/ipvs/ip_vs_ftp.ko
INSTALL net/netfilter/ipvs/ip_vs_lblc.ko
INSTALL net/netfilter/ipvs/ip_vs_lblcr.ko
INSTALL net/netfilter/ipvs/ip_vs_lc.ko
INSTALL net/netfilter/ipvs/ip_vs_mh.ko
INSTALL net/netfilter/ipvs/ip_vs_nq.ko
INSTALL net/netfilter/ipvs/ip_vs_ovf.ko
INSTALL net/netfilter/ipvs/ip_vs_pe_sip.ko
INSTALL net/netfilter/ipvs/ip_vs_rr.ko
INSTALL net/netfilter/ipvs/ip_vs_sed.ko
INSTALL net/netfilter/ipvs/ip_vs_sh.ko
INSTALL net/netfilter/ipvs/ip_vs_wlc.ko
INSTALL net/netfilter/ipvs/ip_vs_wrr.ko
INSTALL net/netfilter/nf_conncount.ko
INSTALL net/netfilter/nf_conntrack.ko
INSTALL net/netfilter/nf_conntrack_amanda.ko
INSTALL net/netfilter/nf_conntrack_broadcast.ko
INSTALL net/netfilter/nf_conntrack_ftp.ko
INSTALL net/netfilter/nf_conntrack_h323.ko
INSTALL net/netfilter/nf_conntrack_irc.ko
INSTALL net/netfilter/nf_conntrack_netbios_ns.ko
INSTALL net/netfilter/nf_conntrack_netlink.ko
INSTALL net/netfilter/nf_conntrack_pptp.ko
INSTALL net/netfilter/nf_conntrack_sane.ko
INSTALL net/netfilter/nf_conntrack_sip.ko
INSTALL net/netfilter/nf_conntrack_snmp.ko
INSTALL net/netfilter/nf_conntrack_tftp.ko
INSTALL net/netfilter/nf_dup_netdev.ko
INSTALL net/netfilter/nf_flow_table.ko
INSTALL net/netfilter/nf_flow_table_inet.ko
INSTALL net/netfilter/nf_log_common.ko
INSTALL net/netfilter/nf_log_netdev.ko
INSTALL net/netfilter/nf_nat.ko
INSTALL net/netfilter/nf_nat_amanda.ko
INSTALL net/netfilter/nf_nat_ftp.ko
INSTALL net/netfilter/nf_nat_irc.ko
INSTALL net/netfilter/nf_nat_sip.ko
INSTALL net/netfilter/nf_nat_tftp.ko
INSTALL net/netfilter/nf_synproxy_core.ko
INSTALL net/netfilter/nf_tables.ko
INSTALL net/netfilter/nf_tables_set.ko
INSTALL net/netfilter/nfnetlink.ko
INSTALL net/netfilter/nfnetlink_acct.ko
INSTALL net/netfilter/nfnetlink_cthelper.ko
INSTALL net/netfilter/nfnetlink_cttimeout.ko
INSTALL net/netfilter/nfnetlink_log.ko
INSTALL net/netfilter/nfnetlink_osf.ko
INSTALL net/netfilter/nfnetlink_queue.ko
INSTALL net/netfilter/nft_chain_nat.ko
INSTALL net/netfilter/nft_compat.ko
INSTALL net/netfilter/nft_connlimit.ko
INSTALL net/netfilter/nft_counter.ko
INSTALL net/netfilter/nft_ct.ko
INSTALL net/netfilter/nft_dup_netdev.ko
INSTALL net/netfilter/nft_fib.ko
INSTALL net/netfilter/nft_fib_inet.ko
INSTALL net/netfilter/nft_fib_netdev.ko
INSTALL net/netfilter/nft_flow_offload.ko
INSTALL net/netfilter/nft_fwd_netdev.ko
INSTALL net/netfilter/nft_hash.ko
INSTALL net/netfilter/nft_limit.ko
INSTALL net/netfilter/nft_log.ko
INSTALL net/netfilter/nft_masq.ko
INSTALL net/netfilter/nft_nat.ko
INSTALL net/netfilter/nft_numgen.ko
INSTALL net/netfilter/nft_objref.ko
INSTALL net/netfilter/nft_osf.ko
INSTALL net/netfilter/nft_queue.ko
INSTALL net/netfilter/nft_quota.ko
INSTALL net/netfilter/nft_redir.ko
INSTALL net/netfilter/nft_reject.ko
INSTALL net/netfilter/nft_reject_inet.ko
INSTALL net/netfilter/nft_socket.ko
INSTALL net/netfilter/nft_tproxy.ko
INSTALL net/netfilter/nft_tunnel.ko
INSTALL net/netfilter/nft_xfrm.ko
INSTALL net/netfilter/x_tables.ko
INSTALL net/netfilter/xt_AUDIT.ko
INSTALL net/netfilter/xt_CHECKSUM.ko
INSTALL net/netfilter/xt_CLASSIFY.ko
INSTALL net/netfilter/xt_CONNSECMARK.ko
INSTALL net/netfilter/xt_CT.ko
INSTALL net/netfilter/xt_DSCP.ko
INSTALL net/netfilter/xt_HL.ko
INSTALL net/netfilter/xt_HMARK.ko
INSTALL net/netfilter/xt_IDLETIMER.ko
INSTALL net/netfilter/xt_LED.ko
INSTALL net/netfilter/xt_LOG.ko
INSTALL net/netfilter/xt_MASQUERADE.ko
INSTALL net/netfilter/xt_NETMAP.ko
INSTALL net/netfilter/xt_NFLOG.ko
INSTALL net/netfilter/xt_NFQUEUE.ko
INSTALL net/netfilter/xt_RATEEST.ko
INSTALL net/netfilter/xt_REDIRECT.ko
INSTALL net/netfilter/xt_SECMARK.ko
INSTALL net/netfilter/xt_TCPMSS.ko
INSTALL net/netfilter/xt_TCPOPTSTRIP.ko
INSTALL net/netfilter/xt_TEE.ko
INSTALL net/netfilter/xt_TPROXY.ko
INSTALL net/netfilter/xt_TRACE.ko
INSTALL net/netfilter/xt_addrtype.ko
INSTALL net/netfilter/xt_bpf.ko
INSTALL net/netfilter/xt_cgroup.ko
INSTALL net/netfilter/xt_cluster.ko
INSTALL net/netfilter/xt_comment.ko
INSTALL net/netfilter/xt_connbytes.ko
INSTALL net/netfilter/xt_connlabel.ko
INSTALL net/netfilter/xt_connlimit.ko
INSTALL net/netfilter/xt_connmark.ko
INSTALL net/netfilter/xt_conntrack.ko
INSTALL net/netfilter/xt_cpu.ko
INSTALL net/netfilter/xt_dccp.ko
INSTALL net/netfilter/xt_devgroup.ko
INSTALL net/netfilter/xt_dscp.ko
INSTALL net/netfilter/xt_ecn.ko
INSTALL net/netfilter/xt_esp.ko
INSTALL net/netfilter/xt_hashlimit.ko
INSTALL net/netfilter/xt_helper.ko
INSTALL net/netfilter/xt_hl.ko
INSTALL net/netfilter/xt_ipcomp.ko
INSTALL net/netfilter/xt_iprange.ko
INSTALL net/netfilter/xt_ipvs.ko
INSTALL net/netfilter/xt_l2tp.ko
INSTALL net/netfilter/xt_length.ko
INSTALL net/netfilter/xt_limit.ko
INSTALL net/netfilter/xt_mac.ko
INSTALL net/netfilter/xt_mark.ko
INSTALL net/netfilter/xt_multiport.ko
INSTALL net/netfilter/xt_nat.ko
INSTALL net/netfilter/xt_nfacct.ko
INSTALL net/netfilter/xt_osf.ko
INSTALL net/netfilter/xt_owner.ko
INSTALL net/netfilter/xt_physdev.ko
INSTALL net/netfilter/xt_pkttype.ko
INSTALL net/netfilter/xt_policy.ko
INSTALL net/netfilter/xt_quota.ko
INSTALL net/netfilter/xt_rateest.ko
INSTALL net/netfilter/xt_realm.ko
INSTALL net/netfilter/xt_recent.ko
INSTALL net/netfilter/xt_sctp.ko
INSTALL net/netfilter/xt_set.ko
INSTALL net/netfilter/xt_socket.ko
INSTALL net/netfilter/xt_state.ko
INSTALL net/netfilter/xt_statistic.ko
INSTALL net/netfilter/xt_string.ko
INSTALL net/netfilter/xt_tcpmss.ko
INSTALL net/netfilter/xt_tcpudp.ko
INSTALL net/netfilter/xt_time.ko
INSTALL net/netfilter/xt_u32.ko
INSTALL net/netlink/netlink_diag.ko
INSTALL net/netrom/netrom.ko
INSTALL net/nsh/nsh.ko
INSTALL net/openvswitch/openvswitch.ko
INSTALL net/openvswitch/vport-gre.ko
INSTALL net/openvswitch/vport-vxlan.ko
INSTALL net/packet/af_packet_diag.ko
INSTALL net/psample/psample.ko
INSTALL net/rds/rds.ko
INSTALL net/rds/rds_tcp.ko
INSTALL net/rfkill/rfkill-gpio.ko
INSTALL net/rfkill/rfkill.ko
INSTALL net/rose/rose.ko
INSTALL net/rxrpc/rxrpc.ko
INSTALL net/sched/act_bpf.ko
INSTALL net/sched/act_connmark.ko
INSTALL net/sched/act_csum.ko
INSTALL net/sched/act_ipt.ko
INSTALL net/sched/act_mirred.ko
INSTALL net/sched/act_police.ko
INSTALL net/sched/act_sample.ko
INSTALL net/sched/act_skbedit.ko
INSTALL net/sched/act_skbmod.ko
INSTALL net/sched/act_tunnel_key.ko
INSTALL net/sched/act_vlan.ko
INSTALL net/sched/cls_basic.ko
INSTALL net/sched/cls_fw.ko
INSTALL net/sched/cls_route.ko
INSTALL net/sched/cls_tcindex.ko
INSTALL net/sched/cls_u32.ko
INSTALL net/sched/em_canid.ko
INSTALL net/sched/em_cmp.ko
INSTALL net/sched/em_ipt.ko
INSTALL net/sched/em_meta.ko
INSTALL net/sched/em_nbyte.ko
INSTALL net/sched/em_text.ko
INSTALL net/sched/em_u32.ko
INSTALL net/sched/sch_cake.ko
INSTALL net/sched/sch_codel.ko
INSTALL net/sched/sch_dsmark.ko
INSTALL net/sched/sch_etf.ko
INSTALL net/sched/sch_fq_codel.ko
INSTALL net/sched/sch_gred.ko
INSTALL net/sched/sch_hfsc.ko
INSTALL net/sched/sch_ingress.ko
INSTALL net/sched/sch_mqprio.ko
INSTALL net/sched/sch_multiq.ko
INSTALL net/sched/sch_netem.ko
INSTALL net/sched/sch_prio.ko
INSTALL net/sched/sch_qfq.ko
INSTALL net/sched/sch_red.ko
INSTALL net/sched/sch_sfb.ko
INSTALL net/sched/sch_sfq.ko
INSTALL net/sched/sch_skbprio.ko
INSTALL net/sched/sch_taprio.ko
INSTALL net/sched/sch_tbf.ko
INSTALL net/sched/sch_teql.ko
INSTALL net/sctp/sctp.ko
INSTALL net/sctp/sctp_diag.ko
INSTALL net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
INSTALL net/tipc/diag.ko
INSTALL net/tipc/tipc.ko
INSTALL net/unix/unix_diag.ko
INSTALL net/wimax/wimax.ko
INSTALL net/wireguard/wireguard.ko
INSTALL net/wireless/cfg80211.ko
INSTALL net/wireless/lib80211.ko
INSTALL net/wireless/lib80211_crypt_ccmp.ko
INSTALL net/wireless/lib80211_crypt_wep.ko
INSTALL net/xfrm/xfrm_interface.ko
INSTALL net/xfrm/xfrm_ipcomp.ko
INSTALL sound/core/snd-hwdep.ko
INSTALL sound/core/snd-pcm-dmaengine.ko
INSTALL sound/core/snd-pcm.ko
INSTALL sound/core/snd-rawmidi.ko
INSTALL sound/core/snd-timer.ko
INSTALL sound/core/snd.ko
INSTALL sound/soc/codecs/snd-soc-ak4118.ko
INSTALL sound/soc/codecs/snd-soc-ak4458.ko
INSTALL sound/soc/codecs/snd-soc-ak5558.ko
INSTALL sound/soc/codecs/snd-soc-bd28623.ko
INSTALL sound/soc/codecs/snd-soc-cpcap.ko
INSTALL sound/soc/codecs/snd-soc-cs35l35.ko
INSTALL sound/soc/codecs/snd-soc-cs35l36.ko
INSTALL sound/soc/codecs/snd-soc-cs4341.ko
INSTALL sound/soc/codecs/snd-soc-dmic.ko
INSTALL sound/soc/codecs/snd-soc-es7241.ko
INSTALL sound/soc/codecs/snd-soc-es8328-i2c.ko
INSTALL sound/soc/codecs/snd-soc-es8328-spi.ko
INSTALL sound/soc/codecs/snd-soc-es8328.ko
INSTALL sound/soc/codecs/snd-soc-hdmi-codec.ko
INSTALL sound/soc/codecs/snd-soc-max9759.ko
INSTALL sound/soc/codecs/snd-soc-max98088.ko
INSTALL sound/soc/codecs/snd-soc-max9867.ko
INSTALL sound/soc/codecs/snd-soc-mt6358.ko
INSTALL sound/soc/codecs/snd-soc-nau8540.ko
INSTALL sound/soc/codecs/snd-soc-nau8822.ko
INSTALL sound/soc/codecs/snd-soc-nau8824.ko
INSTALL sound/soc/codecs/snd-soc-pcm1789-codec.ko
INSTALL sound/soc/codecs/snd-soc-pcm1789-i2c.ko
INSTALL sound/soc/codecs/snd-soc-pcm186x-i2c.ko
INSTALL sound/soc/codecs/snd-soc-pcm186x-spi.ko
INSTALL sound/soc/codecs/snd-soc-pcm186x.ko
INSTALL sound/soc/codecs/snd-soc-pcm3060-i2c.ko
INSTALL sound/soc/codecs/snd-soc-pcm3060-spi.ko
INSTALL sound/soc/codecs/snd-soc-pcm3060.ko
INSTALL sound/soc/codecs/snd-soc-rk3328.ko
INSTALL sound/soc/codecs/snd-soc-simple-amplifier.ko
INSTALL sound/soc/codecs/snd-soc-spdif-rx.ko
INSTALL sound/soc/codecs/snd-soc-spdif-tx.ko
INSTALL sound/soc/codecs/snd-soc-tas6424.ko
INSTALL sound/soc/codecs/snd-soc-tda7419.ko
INSTALL sound/soc/codecs/snd-soc-wm8904.ko
INSTALL sound/soc/generic/snd-soc-simple-card-utils.ko
INSTALL sound/soc/generic/snd-soc-simple-card.ko
INSTALL sound/soc/snd-soc-core.ko
INSTALL sound/soc/sunxi/ac100-codec.ko
INSTALL sound/soc/sunxi/sun4i-codec.ko
INSTALL sound/soc/sunxi/sun4i-i2s.ko
INSTALL sound/soc/sunxi/sun4i-spdif.ko
INSTALL sound/soc/sunxi/sun8i-adda-pr-regmap.ko
INSTALL sound/soc/sunxi/sun8i-codec-analog.ko
INSTALL sound/soc/sunxi/sun8i-codec.ko
INSTALL sound/soc/xilinx/snd-soc-xlnx-formatter-pcm.ko
INSTALL sound/soc/xilinx/snd-soc-xlnx-i2s.ko
INSTALL sound/soc/xilinx/snd-soc-xlnx-spdif.ko
INSTALL sound/soundcore.ko
INSTALL sound/usb/6fire/snd-usb-6fire.ko
INSTALL sound/usb/bcd2000/snd-bcd2000.ko
INSTALL sound/usb/caiaq/snd-usb-caiaq.ko
INSTALL sound/usb/hiface/snd-usb-hiface.ko
INSTALL sound/usb/line6/snd-usb-line6.ko
INSTALL sound/usb/line6/snd-usb-pod.ko
INSTALL sound/usb/line6/snd-usb-podhd.ko
INSTALL sound/usb/line6/snd-usb-toneport.ko
INSTALL sound/usb/line6/snd-usb-variax.ko
INSTALL sound/usb/misc/snd-ua101.ko
INSTALL sound/usb/snd-usb-audio.ko
INSTALL sound/usb/snd-usbmidi-lib.ko
DEPMOD 5.2.2-sunxi
INSTALL arch/arm/boot/dts/sun4i-a10-a1000.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-ba10-tvbox.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-chuwi-v7-cw0825.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-cubieboard.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-dserve-dsrv9703c.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-gemei-g9.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-hackberry.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-hyundai-a7hd.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-inet1.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-inet97fv2.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-inet9f-rev03.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-itead-iteaduino-plus.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-jesurun-q5.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-marsboard.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-mini-xplus.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-mk802.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-mk802ii.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-olinuxino-lime.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-pcduino.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-pcduino2.dtb
INSTALL arch/arm/boot/dts/sun4i-a10-pov-protab2-ips9.dtb
INSTALL arch/arm/boot/dts/sun5i-a10s-auxtek-t003.dtb
INSTALL arch/arm/boot/dts/sun5i-a10s-auxtek-t004.dtb
INSTALL arch/arm/boot/dts/sun5i-a10s-mk802.dtb
INSTALL arch/arm/boot/dts/sun5i-a10s-olinuxino-micro.dtb
INSTALL arch/arm/boot/dts/sun5i-a10s-r7-tv-dongle.dtb
INSTALL arch/arm/boot/dts/sun5i-a10s-wobo-i5.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-difrnce-dit4350.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-empire-electronix-d709.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-empire-electronix-m712.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-hsg-h702.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-inet-98v-rev2.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-licheepi-one.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-olinuxino-micro.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-olinuxino.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-q8-tablet.dtb
INSTALL arch/arm/boot/dts/sun5i-a13-utoo-p66.dtb
INSTALL arch/arm/boot/dts/sun5i-gr8-chip-pro.dtb
INSTALL arch/arm/boot/dts/sun5i-gr8-evb.dtb
INSTALL arch/arm/boot/dts/sun5i-r8-chip.dtb
INSTALL arch/arm/boot/dts/sun6i-a31-app4-evb1.dtb
INSTALL arch/arm/boot/dts/sun6i-a31-colombus.dtb
INSTALL arch/arm/boot/dts/sun6i-a31-hummingbird.dtb
INSTALL arch/arm/boot/dts/sun6i-a31-i7.dtb
INSTALL arch/arm/boot/dts/sun6i-a31-m9.dtb
INSTALL arch/arm/boot/dts/sun6i-a31-mele-a1000g-quad.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-colorfly-e708-q1.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-cs908.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-inet-q972.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-primo81.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-sina31s.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-sinovoip-bpi-m2.dtb
INSTALL arch/arm/boot/dts/sun6i-a31s-yones-toptech-bs1078-v2.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-bananapi-m1-plus.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-bananapi.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-bananapro.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-cubieboard2.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-cubietruck.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-hummingbird.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-i12-tvbox.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-icnova-swac.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-itead-ibox.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-lamobo-r1.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-m3.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-mk808c.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olimex-som-evb-emmc.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olimex-som-evb.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olimex-som204-evb-emmc.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olimex-som204-evb.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olinuxino-lime.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olinuxino-lime2-emmc.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olinuxino-micro-emmc.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-olinuxino-micro.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-orangepi-mini.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-orangepi.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-pcduino3-nano.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-pcduino3.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-wexler-tab7200.dtb
INSTALL arch/arm/boot/dts/sun7i-a20-wits-pro-a20-dkt.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-evb.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-gt90h-v4.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-inet86dz.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-ippo-q8h-v1.2.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-ippo-q8h-v5.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-polaroid-mid2407pxe03.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-polaroid-mid2809pxe04.dtb
INSTALL arch/arm/boot/dts/sun8i-a23-q8-tablet.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-et-q8-v1.6.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-ga10h-v1.1.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-inet-d978-rev2.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-ippo-q8h-v1.2.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-olinuxino.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-q8-tablet.dtb
INSTALL arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dtb
INSTALL arch/arm/boot/dts/sun8i-a83t-allwinner-h8homlet-v2.dtb
INSTALL arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dtb
INSTALL arch/arm/boot/dts/sun8i-a83t-cubietruck-plus.dtb
INSTALL arch/arm/boot/dts/sun8i-a83t-tbs-a711.dtb
INSTALL arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dtb
INSTALL arch/arm/boot/dts/sun8i-h2-plus-libretech-all-h3-cc.dtb
INSTALL arch/arm/boot/dts/sun8i-h2-plus-nanopi-duo.dtb
INSTALL arch/arm/boot/dts/sun8i-h2-plus-orangepi-r1.dtb
INSTALL arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dtb
INSTALL arch/arm/boot/dts/sun8i-h2-plus-sunvell-r69.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus-v1.2.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-beelink-x2.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-libretech-all-h3-cc.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-mapleboard-mp130.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-nanopi-duo2.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-nanopi-m1-plus.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-nanopi-m1.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-nanopi-neo-air.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-nanopi-neo.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-nanopi-r1.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-2.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-lite.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-one.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-pc-plus.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-pc-sapomat.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-pc.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-plus.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-plus2e.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-orangepi-zero-plus2.dtb
INSTALL arch/arm/boot/dts/sun8i-h3-rervision-dvk.dtb
INSTALL arch/arm/boot/dts/sun8i-r16-bananapi-m2m.dtb
INSTALL arch/arm/boot/dts/sun8i-r16-nintendo-nes-classic.dtb
INSTALL arch/arm/boot/dts/sun8i-r16-nintendo-super-nes-classic.dtb
INSTALL arch/arm/boot/dts/sun8i-r16-parrot.dtb
INSTALL arch/arm/boot/dts/sun8i-r40-bananapi-m2-ultra.dtb
INSTALL arch/arm/boot/dts/sun8i-t3-cqa3t-bv3.dtb
INSTALL arch/arm/boot/dts/sun8i-v3s-licheepi-zero-dock.dtb
INSTALL arch/arm/boot/dts/sun8i-v3s-licheepi-zero.dtb
INSTALL arch/arm/boot/dts/sun8i-v40-bananapi-m2-berry.dtb
INSTALL arch/arm/boot/dts/sun9i-a80-cubieboard4.dtb
INSTALL arch/arm/boot/dts/sun9i-a80-optimus.dtb
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-analog-codec.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-can.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-i2c1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-i2c2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-nand.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-pps-gpio.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-pwm.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-spdif-out.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-spi-jedec-nor.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-spi-spidev.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-uart2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-uart3.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-uart4.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-uart5.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-uart6.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-uart7.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-w1-gpio.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-analog-codec.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-i2c1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-i2c2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-nand.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-pwm.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-spi0.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-spi1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-spi2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-spi-jedec-nor.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-spi-spidev.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-uart0.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-uart1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-uart2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-uart3.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-analog-codec.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-can.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-i2c1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-i2c2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-i2c3.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-i2c4.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-mmc2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-nand.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-pps-gpio.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-pwm.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-spdif-out.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-spi-add-cs1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-spi-jedec-nor.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-spi-spidev.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-uart2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-uart3.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-uart4.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-uart5.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-uart6.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-uart7.dtbo
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-w1-gpio.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-analog-codec.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-cir.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-i2c0.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-i2c1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-i2c2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-pps-gpio.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-pwm.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-spdif-out.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-spi-add-cs1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-spi-jedec-nor.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-spi-spidev.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-uart1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-uart2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-uart3.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-usbhost0.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-usbhost1.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-usbhost2.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-usbhost3.dtbo
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-w1-gpio.dtbo
INSTALL arch/arm/boot/dts/overlay/sun4i-a10-fixup.scr
INSTALL arch/arm/boot/dts/overlay/sun5i-a13-fixup.scr
INSTALL arch/arm/boot/dts/overlay/sun7i-a20-fixup.scr
INSTALL arch/arm/boot/dts/overlay/sun8i-h3-fixup.scr
INSTALL arch/arm/boot/dts/overlay/README.sun4i-a10-overlays
INSTALL arch/arm/boot/dts/overlay/README.sun5i-a13-overlays
INSTALL arch/arm/boot/dts/overlay/README.sun7i-a20-overlays
INSTALL arch/arm/boot/dts/overlay/README.sun8i-h3-overlays
HOSTCC scripts/unifdef
INSTALL usr/include/asm-generic/ (36 files)
INSTALL usr/include/drm/ (29 files)
INSTALL usr/include/linux/ (506 files)
INSTALL usr/include/linux/android/ (2 files)
INSTALL usr/include/linux/byteorder/ (2 files)
INSTALL usr/include/linux/caif/ (2 files)
INSTALL usr/include/linux/can/ (6 files)
INSTALL usr/include/linux/cifs/ (1 file)
INSTALL usr/include/linux/dvb/ (8 files)
INSTALL usr/include/linux/genwqe/ (1 file)
INSTALL usr/include/linux/hdlc/ (1 file)
INSTALL usr/include/linux/hsi/ (2 files)
INSTALL usr/include/linux/iio/ (2 files)
INSTALL usr/include/linux/isdn/ (1 file)
INSTALL usr/include/linux/mmc/ (1 file)
INSTALL usr/include/linux/netfilter/ (88 files)
INSTALL usr/include/linux/netfilter/ipset/ (4 files)
INSTALL usr/include/linux/netfilter_arp/ (2 files)
INSTALL usr/include/linux/netfilter_bridge/ (17 files)
INSTALL usr/include/linux/netfilter_ipv4/ (9 files)
INSTALL usr/include/linux/netfilter_ipv6/ (13 files)
INSTALL usr/include/linux/nfsd/ (5 files)
INSTALL usr/include/linux/raid/ (2 files)
INSTALL usr/include/linux/sched/ (1 file)
INSTALL usr/include/linux/spi/ (1 file)
INSTALL usr/include/linux/sunrpc/ (1 file)
INSTALL usr/include/linux/tc_act/ (15 files)
INSTALL usr/include/linux/tc_ematch/ (5 files)
INSTALL usr/include/linux/usb/ (13 files)
INSTALL usr/include/linux/wimax/ (1 file)
INSTALL usr/include/misc/ (4 files)
INSTALL usr/include/mtd/ (5 files)
INSTALL usr/include/rdma/ (26 files)
INSTALL usr/include/rdma/hfi/ (2 files)
INSTALL usr/include/scsi/ (5 files)
INSTALL usr/include/scsi/fc/ (4 files)
INSTALL usr/include/sound/ (16 files)
INSTALL usr/include/sound/sof/ (8 files)
INSTALL usr/include/video/ (3 files)
INSTALL usr/include/xen/ (4 files)
INSTALL usr/include/asm/ (38 files)
CHECK usr/include/asm-generic/ (36 files)
CHECK usr/include/drm/ (29 files)
CHECK usr/include/linux/ (506 files)
CHECK usr/include/linux/android/ (2 files)
CHECK usr/include/linux/byteorder/ (2 files)
CHECK usr/include/linux/caif/ (2 files)
CHECK usr/include/linux/can/ (6 files)
CHECK usr/include/linux/cifs/ (1 files)
CHECK usr/include/linux/dvb/ (8 files)
CHECK usr/include/linux/genwqe/ (1 files)
CHECK usr/include/linux/hdlc/ (1 files)
CHECK usr/include/linux/hsi/ (2 files)
CHECK usr/include/linux/iio/ (2 files)
CHECK usr/include/linux/isdn/ (1 files)
CHECK usr/include/linux/mmc/ (1 files)
CHECK usr/include/linux/netfilter/ (88 files)
CHECK usr/include/linux/netfilter/ipset/ (4 files)
CHECK usr/include/linux/netfilter_arp/ (2 files)
CHECK usr/include/linux/netfilter_bridge/ (17 files)
CHECK usr/include/linux/netfilter_ipv4/ (9 files)
CHECK usr/include/linux/netfilter_ipv6/ (13 files)
CHECK usr/include/linux/nfsd/ (5 files)
CHECK usr/include/linux/raid/ (2 files)
CHECK usr/include/linux/sched/ (1 files)
CHECK usr/include/linux/spi/ (1 files)
CHECK usr/include/linux/sunrpc/ (1 files)
CHECK usr/include/linux/tc_act/ (15 files)
CHECK usr/include/linux/tc_ematch/ (5 files)
CHECK usr/include/linux/usb/ (13 files)
CHECK usr/include/linux/wimax/ (1 files)
CHECK usr/include/misc/ (4 files)
CHECK usr/include/mtd/ (5 files)
CHECK usr/include/rdma/ (26 files)
CHECK usr/include/rdma/hfi/ (2 files)
CHECK usr/include/scsi/ (5 files)
CHECK usr/include/scsi/fc/ (4 files)
CHECK usr/include/sound/ (16 files)
CHECK usr/include/sound/sof/ (8 files)
CHECK usr/include/video/ (3 files)
CHECK usr/include/xen/ (4 files)
CHECK usr/include/asm/ (38 files)
INSTALL debian/headertmp/usr/include/asm-generic/ (36 files)
INSTALL debian/headertmp/usr/include/drm/ (29 files)
INSTALL debian/headertmp/usr/include/linux/android/ (2 files)
INSTALL debian/headertmp/usr/include/linux/byteorder/ (2 files)
INSTALL debian/headertmp/usr/include/linux/caif/ (2 files)
INSTALL debian/headertmp/usr/include/linux/can/ (6 files)
INSTALL debian/headertmp/usr/include/linux/cifs/ (1 file)
INSTALL debian/headertmp/usr/include/linux/dvb/ (8 files)
INSTALL debian/headertmp/usr/include/linux/genwqe/ (1 file)
INSTALL debian/headertmp/usr/include/linux/hdlc/ (1 file)
INSTALL debian/headertmp/usr/include/linux/hsi/ (2 files)
INSTALL debian/headertmp/usr/include/linux/iio/ (2 files)
INSTALL debian/headertmp/usr/include/linux/isdn/ (1 file)
INSTALL debian/headertmp/usr/include/linux/mmc/ (1 file)
INSTALL debian/headertmp/usr/include/linux/netfilter/ipset/ (4 files)
INSTALL debian/headertmp/usr/include/linux/netfilter/ (88 files)
INSTALL debian/headertmp/usr/include/linux/netfilter_arp/ (2 files)
INSTALL debian/headertmp/usr/include/linux/netfilter_bridge/ (17 files)
INSTALL debian/headertmp/usr/include/linux/netfilter_ipv4/ (9 files)
INSTALL debian/headertmp/usr/include/linux/netfilter_ipv6/ (13 files)
INSTALL debian/headertmp/usr/include/linux/nfsd/ (5 files)
INSTALL debian/headertmp/usr/include/linux/raid/ (2 files)
INSTALL debian/headertmp/usr/include/linux/sched/ (1 file)
INSTALL debian/headertmp/usr/include/linux/spi/ (1 file)
INSTALL debian/headertmp/usr/include/linux/sunrpc/ (1 file)
INSTALL debian/headertmp/usr/include/linux/tc_act/ (15 files)
INSTALL debian/headertmp/usr/include/linux/tc_ematch/ (5 files)
INSTALL debian/headertmp/usr/include/linux/usb/ (13 files)
INSTALL debian/headertmp/usr/include/linux/wimax/ (1 file)
INSTALL debian/headertmp/usr/include/linux/ (506 files)
INSTALL debian/headertmp/usr/include/misc/ (4 files)
INSTALL debian/headertmp/usr/include/mtd/ (5 files)
INSTALL debian/headertmp/usr/include/rdma/hfi/ (2 files)
INSTALL debian/headertmp/usr/include/rdma/ (26 files)
INSTALL debian/headertmp/usr/include/scsi/fc/ (4 files)
INSTALL debian/headertmp/usr/include/scsi/ (5 files)
INSTALL debian/headertmp/usr/include/sound/sof/ (8 files)
INSTALL debian/headertmp/usr/include/sound/ (16 files)
INSTALL debian/headertmp/usr/include/video/ (3 files)
INSTALL debian/headertmp/usr/include/xen/ (4 files)
INSTALL debian/headertmp/usr/include/asm/ (38 files)
patching file tools/include/tools/be_byteshift.h
patching file tools/include/tools/le_byteshift.h
CLEAN scripts/basic
CLEAN scripts/dtc
CLEAN scripts/kconfig
CLEAN scripts/mod
CLEAN scripts
dpkg-deb: building package 'linux-headers-dev-sunxi' in '../linux-headers-dev-sunxi_5.91_armhf.deb'.
dpkg-deb: building package 'linux-dtb-dev-sunxi' in '../linux-dtb-dev-sunxi_5.91_armhf.deb'.
dpkg-deb: building package 'linux-image-dev-sunxi' in '../linux-image-dev-sunxi_5.91_armhf.deb'.
dpkg-buildpackage: info: binary-only upload (no source included)
dpkg-deb: building package 'linux-source-5.2.2-dev-sunxi' in '/home/guido/build-mini/.tmp/linux-source-dev-sunxi_5.91_all.deb'.
[ o.k. ] Creating board support package [ orangepione dev ]
[ .... ] Fingerprinting
[ o.k. ] Building package [ linux-buster-root-dev-orangepione ]
[ o.k. ] Building desktop package [ armbian-buster-desktop_5.91_all ]
[ o.k. ] Starting rootfs and image building process for [ orangepione buster ]
[ o.k. ] Checking for local cache [ buster-cli-armhf.621...69c.tar.lz4 ]
[ .... ] searching on servers
[ o.k. ] ... remote not found [ Creating new rootfs cache for buster ]
[ o.k. ] Installing base system [ Stage 1/2 ]
I: Retrieving InRelease
I: Checking Release signature
I: Valid Release signature (key id 067E3C456BAE240ACEE88F6FEF0F382A1A7B6500)
I: Retrieving Packages
I: Validating Packages
I: Found packages in base already in required: apt
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Found additional required dependencies: adduser debian-archive-keyring fdisk gcc-8-base gpgv libacl1 libapt-pkg5.0 libattr1 libaudit1 libaudit-common libblkid1 libbz2-1.0 libc6 libcap-ng0 libcom-err2 libdb5.3 libdebconfclient0 libext2fs2 libfdisk1 libffi6 libgcc1 libgcrypt20 libgmp10 libgnutls30 libgpg-error0 libhogweed4 libidn2-0 liblz4-1 liblzma5 libmount1 libncursesw6 libnettle6 libp11-kit0 libpam0g libpcre3 libseccomp2 libselinux1 libsemanage1 libsemanage-common libsepol1 libsmartcols1 libss2 libstdc++6 libsystemd0 libtasn1-6 libtinfo6 libudev1 libunistring2 libuuid1 libzstd1 zlib1g
I: Found additional base dependencies: dirmngr gnupg-l10n gnupg-utils gpg gpg-agent gpgconf gpgsm gpg-wks-client gpg-wks-server iproute2 libassuan0 libcap2 libcap2-bin libc-l10n libelf1 libksba8 libldap-2.4-2 libldap-common libmnl0 libnpth0 libreadline7 libsasl2-2 libsasl2-modules-db libsqlite3-0 libssl1.1 libxtables12 lsb-base openssl pinentry-curses readline-common
I: Checking component main on http://localhost:3142/httpredir.debian.org/debian...
I: Retrieving libacl1 2.2.53-4
I: Validating libacl1 2.2.53-4
I: Retrieving adduser 3.118
I: Validating adduser 3.118
I: Retrieving apt 1.8.2
I: Validating apt 1.8.2
I: Retrieving apt-transport-https 1.8.2
I: Validating apt-transport-https 1.8.2
I: Retrieving libapt-pkg5.0 1.8.2
I: Validating libapt-pkg5.0 1.8.2
I: Retrieving libattr1 1:2.4.48-4
I: Validating libattr1 1:2.4.48-4
I: Retrieving libaudit-common 1:2.8.4-3
I: Validating libaudit-common 1:2.8.4-3
I: Retrieving libaudit1 1:2.8.4-3
I: Validating libaudit1 1:2.8.4-3
I: Retrieving base-files 10.3
I: Validating base-files 10.3
I: Retrieving base-passwd 3.5.46
I: Validating base-passwd 3.5.46
I: Retrieving bash 5.0-4
I: Validating bash 5.0-4
I: Retrieving libbz2-1.0 1.0.6-9.1
I: Validating libbz2-1.0 1.0.6-9.1
I: Retrieving ca-certificates 20190110
I: Validating ca-certificates 20190110
I: Retrieving libdebconfclient0 0.249
I: Validating libdebconfclient0 0.249
I: Retrieving coreutils 8.30-3
I: Validating coreutils 8.30-3
I: Retrieving libsasl2-2 2.1.27+dfsg-1
I: Validating libsasl2-2 2.1.27+dfsg-1
I: Retrieving libsasl2-modules-db 2.1.27+dfsg-1
I: Validating libsasl2-modules-db 2.1.27+dfsg-1
I: Retrieving dash 0.5.10.2-5
I: Validating dash 0.5.10.2-5
I: Retrieving libdb5.3 5.3.28+dfsg1-0.5
I: Validating libdb5.3 5.3.28+dfsg1-0.5
I: Retrieving debconf 1.5.71
I: Validating debconf 1.5.71
I: Retrieving debian-archive-keyring 2019.1
I: Validating debian-archive-keyring 2019.1
I: Retrieving debianutils 4.8.6.1
I: Validating debianutils 4.8.6.1
I: Retrieving diffutils 1:3.7-3
I: Validating diffutils 1:3.7-3
I: Retrieving dpkg 1.19.7
I: Validating dpkg 1.19.7
I: Retrieving e2fsprogs 1.44.5-1
I: Validating e2fsprogs 1.44.5-1
I: Retrieving libcom-err2 1.44.5-1
I: Validating libcom-err2 1.44.5-1
I: Retrieving libext2fs2 1.44.5-1
I: Validating libext2fs2 1.44.5-1
I: Retrieving libss2 1.44.5-1
I: Validating libss2 1.44.5-1
I: Retrieving libelf1 0.176-1.1
I: Validating libelf1 0.176-1.1
I: Retrieving findutils 4.6.0+git+20190209-2
I: Validating findutils 4.6.0+git+20190209-2
I: Retrieving gcc-8-base 8.3.0-6
I: Validating gcc-8-base 8.3.0-6
I: Retrieving libgcc1 1:8.3.0-6
I: Validating libgcc1 1:8.3.0-6
I: Retrieving libstdc++6 8.3.0-6
I: Validating libstdc++6 8.3.0-6
I: Retrieving libc-bin 2.28-10
I: Validating libc-bin 2.28-10
I: Retrieving libc-l10n 2.28-10
I: Validating libc-l10n 2.28-10
I: Retrieving libc6 2.28-10
I: Validating libc6 2.28-10
I: Retrieving locales 2.28-10
I: Validating locales 2.28-10
I: Retrieving libgmp10 2:6.1.2+dfsg-4
I: Validating libgmp10 2:6.1.2+dfsg-4
I: Retrieving dirmngr 2.2.12-1
I: Validating dirmngr 2.2.12-1
I: Retrieving gnupg 2.2.12-1
I: Validating gnupg 2.2.12-1
I: Retrieving gnupg-l10n 2.2.12-1
I: Validating gnupg-l10n 2.2.12-1
I: Retrieving gnupg-utils 2.2.12-1
I: Validating gnupg-utils 2.2.12-1
I: Retrieving gpg 2.2.12-1
I: Validating gpg 2.2.12-1
I: Retrieving gpg-agent 2.2.12-1
I: Validating gpg-agent 2.2.12-1
I: Retrieving gpg-wks-client 2.2.12-1
I: Validating gpg-wks-client 2.2.12-1
I: Retrieving gpg-wks-server 2.2.12-1
I: Validating gpg-wks-server 2.2.12-1
I: Retrieving gpgconf 2.2.12-1
I: Validating gpgconf 2.2.12-1
I: Retrieving gpgsm 2.2.12-1
I: Validating gpgsm 2.2.12-1
I: Retrieving gpgv 2.2.12-1
I: Validating gpgv 2.2.12-1
I: Retrieving libgnutls30 3.6.7-4
I: Validating libgnutls30 3.6.7-4
I: Retrieving grep 3.3-1
I: Validating grep 3.3-1
I: Retrieving gzip 1.9-3
I: Validating gzip 1.9-3
I: Retrieving hostname 3.21
I: Validating hostname 3.21
I: Retrieving ifupdown 0.8.35
I: Validating ifupdown 0.8.35
I: Retrieving init-system-helpers 1.56+nmu1
I: Validating init-system-helpers 1.56+nmu1
I: Retrieving iproute2 4.20.0-2
I: Validating iproute2 4.20.0-2
I: Retrieving libxtables12 1.8.2-4
I: Validating libxtables12 1.8.2-4
I: Retrieving libassuan0 2.5.2-1
I: Validating libassuan0 2.5.2-1
I: Retrieving libcap-ng0 0.7.9-2
I: Validating libcap-ng0 0.7.9-2
I: Retrieving libcap2 1:2.25-2
I: Validating libcap2 1:2.25-2
I: Retrieving libcap2-bin 1:2.25-2
I: Validating libcap2-bin 1:2.25-2
I: Retrieving libffi6 3.2.1-9
I: Validating libffi6 3.2.1-9
I: Retrieving libgcrypt20 1.8.4-5
I: Validating libgcrypt20 1.8.4-5
I: Retrieving libgpg-error0 1.35-1
I: Validating libgpg-error0 1.35-1
I: Retrieving libidn2-0 2.0.5-1
I: Validating libidn2-0 2.0.5-1
I: Retrieving libksba8 1.3.5-2
I: Validating libksba8 1.3.5-2
I: Retrieving libmnl0 1.0.4-2
I: Validating libmnl0 1.0.4-2
I: Retrieving libseccomp2 2.3.3-4
I: Validating libseccomp2 2.3.3-4
I: Retrieving libselinux1 2.8-1+b1
I: Validating libselinux1 2.8-1+b1
I: Retrieving libsemanage-common 2.8-2
I: Validating libsemanage-common 2.8-2
I: Retrieving libsemanage1 2.8-2
I: Validating libsemanage1 2.8-2
I: Retrieving libsepol1 2.8-1
I: Validating libsepol1 2.8-1
I: Retrieving libtasn1-6 4.13-3
I: Validating libtasn1-6 4.13-3
I: Retrieving libunistring2 0.9.10-1
I: Validating libunistring2 0.9.10-1
I: Retrieving libzstd1 1.3.8+dfsg-3
I: Validating libzstd1 1.3.8+dfsg-3
I: Retrieving lsb-base 10.2019051400
I: Validating lsb-base 10.2019051400
I: Retrieving liblz4-1 1.8.3-1
I: Validating liblz4-1 1.8.3-1
I: Retrieving mawk 1.3.3-17+b3
I: Validating mawk 1.3.3-17+b3
I: Retrieving libncursesw6 6.1+20181013-2
I: Validating libncursesw6 6.1+20181013-2
I: Retrieving libtinfo6 6.1+20181013-2
I: Validating libtinfo6 6.1+20181013-2
I: Retrieving ncurses-base 6.1+20181013-2
I: Validating ncurses-base 6.1+20181013-2
I: Retrieving ncurses-bin 6.1+20181013-2
I: Validating ncurses-bin 6.1+20181013-2
I: Retrieving libhogweed4 3.4.1-1
I: Validating libhogweed4 3.4.1-1
I: Retrieving libnettle6 3.4.1-1
I: Validating libnettle6 3.4.1-1
I: Retrieving libnpth0 1.6-1
I: Validating libnpth0 1.6-1
I: Retrieving libldap-2.4-2 2.4.47+dfsg-3
I: Validating libldap-2.4-2 2.4.47+dfsg-3
I: Retrieving libldap-common 2.4.47+dfsg-3
I: Validating libldap-common 2.4.47+dfsg-3
I: Retrieving libssl1.1 1.1.1c-1
I: Validating libssl1.1 1.1.1c-1
I: Retrieving openssl 1.1.1c-1
I: Validating openssl 1.1.1c-1
I: Retrieving libp11-kit0 0.23.15-2
I: Validating libp11-kit0 0.23.15-2
I: Retrieving libpam-modules 1.3.1-5
I: Validating libpam-modules 1.3.1-5
I: Retrieving libpam-modules-bin 1.3.1-5
I: Validating libpam-modules-bin 1.3.1-5
I: Retrieving libpam-runtime 1.3.1-5
I: Validating libpam-runtime 1.3.1-5
I: Retrieving libpam0g 1.3.1-5
I: Validating libpam0g 1.3.1-5
I: Retrieving libpcre3 2:8.39-12
I: Validating libpcre3 2:8.39-12
I: Retrieving perl-base 5.28.1-6
I: Validating perl-base 5.28.1-6
I: Retrieving pinentry-curses 1.1.0-2
I: Validating pinentry-curses 1.1.0-2
I: Retrieving libreadline7 7.0-5
I: Validating libreadline7 7.0-5
I: Retrieving readline-common 7.0-5
I: Validating readline-common 7.0-5
I: Retrieving sed 4.7-1
I: Validating sed 4.7-1
I: Retrieving login 1:4.5-1.1
I: Validating login 1:4.5-1.1
I: Retrieving passwd 1:4.5-1.1
I: Validating passwd 1:4.5-1.1
I: Retrieving libsqlite3-0 3.27.2-3
I: Validating libsqlite3-0 3.27.2-3
I: Retrieving libsystemd0 241-5
I: Validating libsystemd0 241-5
I: Retrieving libudev1 241-5
I: Validating libudev1 241-5
I: Retrieving sysvinit-utils 2.93-8
I: Validating sysvinit-utils 2.93-8
I: Retrieving tar 1.30+dfsg-6
I: Validating tar 1.30+dfsg-6
I: Retrieving tzdata 2019a-1
I: Validating tzdata 2019a-1
I: Retrieving bsdutils 1:2.33.1-0.1
I: Validating bsdutils 1:2.33.1-0.1
I: Retrieving fdisk 2.33.1-0.1
I: Validating fdisk 2.33.1-0.1
I: Retrieving libblkid1 2.33.1-0.1
I: Validating libblkid1 2.33.1-0.1
I: Retrieving libfdisk1 2.33.1-0.1
I: Validating libfdisk1 2.33.1-0.1
I: Retrieving libmount1 2.33.1-0.1
I: Validating libmount1 2.33.1-0.1
I: Retrieving libsmartcols1 2.33.1-0.1
I: Validating libsmartcols1 2.33.1-0.1
I: Retrieving libuuid1 2.33.1-0.1
I: Validating libuuid1 2.33.1-0.1
I: Retrieving mount 2.33.1-0.1
I: Validating mount 2.33.1-0.1
I: Retrieving util-linux 2.33.1-0.1
I: Validating util-linux 2.33.1-0.1
I: Retrieving liblzma5 5.2.4-1
I: Validating liblzma5 5.2.4-1
I: Retrieving zlib1g 1:1.2.11.dfsg-1
I: Validating zlib1g 1:1.2.11.dfsg-1
I: Chosen extractor for .deb packages: dpkg-deb
I: Extracting libacl1...
I: Extracting adduser...
I: Extracting apt...
I: Extracting libapt-pkg5.0...
I: Extracting libattr1...
I: Extracting libaudit-common...
I: Extracting libaudit1...
I: Extracting base-files...
I: Extracting base-passwd...
I: Extracting bash...
I: Extracting libbz2-1.0...
I: Extracting libdebconfclient0...
I: Extracting coreutils...
I: Extracting dash...
I: Extracting libdb5.3...
I: Extracting debconf...
I: Extracting debian-archive-keyring...
I: Extracting debianutils...
I: Extracting diffutils...
I: Extracting dpkg...
I: Extracting e2fsprogs...
I: Extracting libcom-err2...
I: Extracting libext2fs2...
I: Extracting libss2...
I: Extracting findutils...
I: Extracting gcc-8-base...
I: Extracting libgcc1...
I: Extracting libstdc++6...
I: Extracting libc-bin...
I: Extracting libc6...
I: Extracting libgmp10...
I: Extracting gpgv...
I: Extracting libgnutls30...
I: Extracting grep...
I: Extracting gzip...
I: Extracting hostname...
I: Extracting init-system-helpers...
I: Extracting libcap-ng0...
I: Extracting libffi6...
I: Extracting libgcrypt20...
I: Extracting libgpg-error0...
I: Extracting libidn2-0...
I: Extracting libseccomp2...
I: Extracting libselinux1...
I: Extracting libsemanage-common...
I: Extracting libsemanage1...
I: Extracting libsepol1...
I: Extracting libtasn1-6...
I: Extracting libunistring2...
I: Extracting libzstd1...
I: Extracting liblz4-1...
I: Extracting mawk...
I: Extracting libncursesw6...
I: Extracting libtinfo6...
I: Extracting ncurses-base...
I: Extracting ncurses-bin...
I: Extracting libhogweed4...
I: Extracting libnettle6...
I: Extracting libp11-kit0...
I: Extracting libpam-modules...
I: Extracting libpam-modules-bin...
I: Extracting libpam-runtime...
I: Extracting libpam0g...
I: Extracting libpcre3...
I: Extracting perl-base...
I: Extracting sed...
I: Extracting login...
I: Extracting passwd...
I: Extracting libsystemd0...
I: Extracting libudev1...
I: Extracting sysvinit-utils...
I: Extracting tar...
I: Extracting tzdata...
I: Extracting bsdutils...
I: Extracting fdisk...
I: Extracting libblkid1...
I: Extracting libfdisk1...
I: Extracting libmount1...
I: Extracting libsmartcols1...
I: Extracting libuuid1...
I: Extracting mount...
I: Extracting util-linux...
I: Extracting liblzma5...
I: Extracting zlib1g...
[ o.k. ] Installing base system [ Stage 2/2 ]
/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
I: Installing core packages...
I: Unpacking required packages...
I: Unpacking libacl1:armhf...
I: Unpacking adduser...
I: Unpacking apt...
I: Unpacking libapt-pkg5.0:armhf...
I: Unpacking libattr1:armhf...
I: Unpacking libaudit-common...
I: Unpacking libaudit1:armhf...
I: Unpacking base-files...
I: Unpacking base-passwd...
I: Unpacking bash...
I: Unpacking libbz2-1.0:armhf...
I: Unpacking libdebconfclient0:armhf...
I: Unpacking coreutils...
I: Unpacking dash...
I: Unpacking libdb5.3:armhf...
I: Unpacking debconf...
I: Unpacking debian-archive-keyring...
I: Unpacking debianutils...
I: Unpacking diffutils...
I: Unpacking dpkg...
I: Unpacking e2fsprogs...
I: Unpacking libcom-err2:armhf...
I: Unpacking libext2fs2:armhf...
I: Unpacking libss2:armhf...
I: Unpacking findutils...
I: Unpacking gcc-8-base:armhf...
I: Unpacking libgcc1:armhf...
I: Unpacking libstdc++6:armhf...
I: Unpacking libc-bin...
I: Unpacking libc6:armhf...
I: Unpacking libgmp10:armhf...
I: Unpacking gpgv...
I: Unpacking libgnutls30:armhf...
I: Unpacking grep...
I: Unpacking gzip...
I: Unpacking hostname...
I: Unpacking init-system-helpers...
I: Unpacking libcap-ng0:armhf...
I: Unpacking libffi6:armhf...
I: Unpacking libgcrypt20:armhf...
I: Unpacking libgpg-error0:armhf...
I: Unpacking libidn2-0:armhf...
I: Unpacking libseccomp2:armhf...
I: Unpacking libselinux1:armhf...
I: Unpacking libsemanage-common...
I: Unpacking libsemanage1:armhf...
I: Unpacking libsepol1:armhf...
I: Unpacking libtasn1-6:armhf...
I: Unpacking libunistring2:armhf...
I: Unpacking libzstd1:armhf...
I: Unpacking liblz4-1:armhf...
I: Unpacking mawk...
I: Unpacking libncursesw6:armhf...
I: Unpacking libtinfo6:armhf...
I: Unpacking ncurses-base...
I: Unpacking ncurses-bin...
I: Unpacking libhogweed4:armhf...
I: Unpacking libnettle6:armhf...
I: Unpacking libp11-kit0:armhf...
I: Unpacking libpam-modules:armhf...
I: Unpacking libpam-modules-bin...
I: Unpacking libpam-runtime...
I: Unpacking libpam0g:armhf...
I: Unpacking libpcre3:armhf...
I: Unpacking perl-base...
I: Unpacking sed...
I: Unpacking login...
I: Unpacking passwd...
I: Unpacking libsystemd0:armhf...
I: Unpacking libudev1:armhf...
I: Unpacking sysvinit-utils...
I: Unpacking tar...
I: Unpacking tzdata...
I: Unpacking bsdutils...
I: Unpacking fdisk...
I: Unpacking libblkid1:armhf...
I: Unpacking libfdisk1:armhf...
I: Unpacking libmount1:armhf...
I: Unpacking libsmartcols1:armhf...
I: Unpacking libuuid1:armhf...
I: Unpacking mount...
I: Unpacking util-linux...
I: Unpacking liblzma5:armhf...
I: Unpacking zlib1g:armhf...
I: Configuring required packages...
I: Configuring debian-archive-keyring...
I: Configuring libaudit-common...
I: Configuring libsemanage-common...
I: Configuring ncurses-base...
I: Configuring gcc-8-base:armhf...
I: Configuring libc6:armhf...
I: Configuring libudev1:armhf...
I: Configuring libsepol1:armhf...
I: Configuring libattr1:armhf...
I: Configuring libtasn1-6:armhf...
I: Configuring debianutils...
I: Configuring mawk...
I: Configuring libdebconfclient0:armhf...
I: Configuring base-files...
I: Configuring libbz2-1.0:armhf...
I: Configuring base-passwd...
I: Configuring libdb5.3:armhf...
I: Configuring libtinfo6:armhf...
I: Configuring bash...
I: Configuring libzstd1:armhf...
I: Configuring liblzma5:armhf...
I: Configuring libgpg-error0:armhf...
I: Configuring libgcc1:armhf...
I: Configuring liblz4-1:armhf...
I: Configuring libc-bin...
I: Configuring ncurses-bin...
I: Configuring libacl1:armhf...
I: Configuring libunistring2:armhf...
I: Configuring libsmartcols1:armhf...
I: Configuring libgcrypt20:armhf...
I: Configuring zlib1g:armhf...
I: Configuring libffi6:armhf...
I: Configuring libidn2-0:armhf...
I: Configuring libcom-err2:armhf...
I: Configuring diffutils...
I: Configuring libseccomp2:armhf...
I: Configuring libsystemd0:armhf...
I: Configuring hostname...
I: Configuring libpcre3:armhf...
I: Configuring libcap-ng0:armhf...
I: Configuring libext2fs2:armhf...
I: Configuring libgmp10:armhf...
I: Configuring libp11-kit0:armhf...
I: Configuring libaudit1:armhf...
I: Configuring libuuid1:armhf...
I: Configuring libss2:armhf...
I: Configuring libncursesw6:armhf...
I: Configuring libnettle6:armhf...
I: Configuring gpgv...
I: Configuring libblkid1:armhf...
I: Configuring libstdc++6:armhf...
I: Configuring bsdutils...
I: Configuring libhogweed4:armhf...
I: Configuring e2fsprogs...
I: Configuring libselinux1:armhf...
I: Configuring libgnutls30:armhf...
I: Configuring sed...
I: Configuring libfdisk1:armhf...
I: Configuring findutils...
I: Configuring libmount1:armhf...
I: Configuring libapt-pkg5.0:armhf...
I: Configuring libsemanage1:armhf...
I: Configuring tar...
I: Configuring coreutils...
I: Configuring fdisk...
I: Configuring dpkg...
I: Configuring grep...
I: Configuring perl-base...
I: Configuring init-system-helpers...
I: Configuring gzip...
I: Configuring debconf...
I: Configuring tzdata...
I: Configuring libpam0g:armhf...
I: Configuring dash...
I: Configuring libpam-modules-bin...
I: Configuring libpam-modules:armhf...
I: Configuring passwd...
I: Configuring libpam-runtime...
I: Configuring login...
I: Configuring adduser...
I: Configuring apt...
I: Configuring util-linux...
I: Configuring mount...
I: Configuring sysvinit-utils...
I: Configuring libc-bin...
I: Unpacking the base system...
I: Unpacking apt-transport-https...
I: Unpacking ca-certificates...
I: Unpacking libsasl2-2:armhf...
I: Unpacking libsasl2-modules-db:armhf...
I: Unpacking libelf1:armhf...
I: Unpacking libc-l10n...
I: Unpacking locales...
I: Unpacking dirmngr...
I: Unpacking gnupg...
I: Unpacking gnupg-l10n...
I: Unpacking gnupg-utils...
I: Unpacking gpg...
I: Unpacking gpg-agent...
I: Unpacking gpg-wks-client...
I: Unpacking gpg-wks-server...
I: Unpacking gpgconf...
I: Unpacking gpgsm...
I: Unpacking ifupdown...
I: Unpacking iproute2...
I: Unpacking libxtables12:armhf...
I: Unpacking libassuan0:armhf...
I: Unpacking libcap2:armhf...
I: Unpacking libcap2-bin...
I: Unpacking libksba8:armhf...
I: Unpacking libmnl0:armhf...
I: Unpacking lsb-base...
I: Unpacking libnpth0:armhf...
I: Unpacking libldap-2.4-2:armhf...
I: Unpacking libldap-common...
I: Unpacking libssl1.1:armhf...
I: Unpacking openssl...
I: Unpacking pinentry-curses...
I: Unpacking libreadline7:armhf...
I: Unpacking readline-common...
I: Unpacking libsqlite3-0:armhf...
I: Configuring the base system...
I: Configuring libksba8:armhf...
I: Configuring lsb-base...
I: Configuring libc-l10n...
I: Configuring apt-transport-https...
I: Configuring libssl1.1:armhf...
I: Configuring libsqlite3-0:armhf...
I: Configuring libnpth0:armhf...
I: Configuring libassuan0:armhf...
I: Configuring locales...
I: Configuring libldap-common...
I: Configuring libcap2:armhf...
I: Configuring libsasl2-modules-db:armhf...
I: Configuring libcap2-bin...
I: Configuring gnupg-l10n...
I: Configuring libmnl0:armhf...
I: Configuring libxtables12:armhf...
I: Configuring libsasl2-2:armhf...
I: Configuring openssl...
I: Configuring libelf1:armhf...
I: Configuring readline-common...
I: Configuring libreadline7:armhf...
I: Configuring gnupg-utils...
I: Configuring pinentry-curses...
I: Configuring iproute2...
I: Configuring libldap-2.4-2:armhf...
I: Configuring ca-certificates...
I: Configuring ifupdown...
I: Configuring gpgconf...
I: Configuring gpg...
I: Configuring gpg-agent...
I: Configuring gpgsm...
I: Configuring dirmngr...
I: Configuring gpg-wks-server...
I: Configuring gpg-wks-client...
I: Configuring gnupg...
I: Configuring libc-bin...
I: Configuring ca-certificates...
I: Base system installed successfully.
/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
dpkg-divert: warning: diverting file '/sbin/start-stop-daemon' from an Essential package with rename is dangerous, use --no-rename
[ o.k. ] Configuring locales [ en_US.UTF-8 ]
Generating locales (this might take a while)...
en_US.UTF-8... done
Generation complete.
OK
[ o.k. ] Updating package list [ buster ]
Err:1 http://httpredir.debian.org/debian buster InRelease
Could not resolve 'localhost'
Err:2 http://httpredir.debian.org/debian buster-updates InRelease
Could not resolve 'localhost'
Err:3 http://httpredir.debian.org/debian buster-backports InRelease
Could not resolve 'localhost'
Err:4 http://security.debian.org buster/updates InRelease
Could not resolve 'localhost'
Err:5 http://apt.armbian.com buster InRelease
Could not resolve 'localhost'
Reading package lists...
W: Failed to fetch http://httpredir.debian.org/debian/dists/buster/InRelease Could not resolve 'localhost'
W: Failed to fetch http://httpredir.debian.org/debian/dists/buster-updates/InRelease Could not resolve 'localhost'
W: Failed to fetch http://httpredir.debian.org/debian/dists/buster-backports/InRelease Could not resolve 'localhost'
W: Failed to fetch http://security.debian.org/dists/buster/updates/InRelease Could not resolve 'localhost'
W: Failed to fetch http://apt.armbian.com/dists/buster/InRelease Could not resolve 'localhost'
W: Some index files failed to download. They have been ignored, or old ones used instead.
[ o.k. ] Upgrading base packages [ Armbian ]
Reading package lists...
Building dependency tree...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[ o.k. ] Installing packages for [ Armbian ]
Reading package lists...
Building dependency tree...
Package debconf-utils is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another sourcePackage dialog is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another sourcePackage parted is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another sourcePackage nocache is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another sourceE: Unable to locate package bc
E: Unable to locate package cpufrequtils
E: Unable to locate package device-tree-compiler
E: Unable to locate package fping
E: Unable to locate package fake-hwclock
E: Unable to locate package psmisc
E: Unable to locate package ntp
E: Package 'parted' has no installation candidate
E: Unable to locate package linux-base
E: Package 'dialog' has no installation candidate
E: Unable to locate package ncurses-term
E: Unable to locate package sysfsutils
E: Unable to locate package toilet
E: Unable to locate package u-boot-tools
E: Unable to locate package usbutils
E: Unable to locate package console-setup
E: Unable to locate package openssh-server
E: Unable to locate package initramfs-tools
E: Package 'nocache' has no installation candidate
E: Package 'debconf-utils' has no installation candidate
E: Unable to locate package network-manager
E: Unable to locate package cron
E: Unable to locate package lsof
E: Unable to locate package htop
E: Unable to locate package vim
E: Unable to locate package mmc-utils
E: Unable to locate package rsyslog
[ error ] ERROR in function create_rootfs_cache [ debootstrap.sh:231 ]
[ error ] Installation of Armbian packages failed
[ o.k. ] Process terminated
[ error ] ERROR in function unmount_on_exit [ image-helpers.sh:62 ]
[ error ] debootstrap-ng was interrupted
[ o.k. ] Process terminated
root@core2duo(192.168.6.19):/home/guido/build-mini# -
2 hours ago, Hijax said:
Anyway the error you see means resolvconf is not installed. This must by corrected in configuration.sh
Hmm- I do compile on a native installed Ubuntu x86 18.04
I installed - now - resolvconf via apt and rebooted, but I got the same error on compile
What lines have to be changed for resolvconf?
Does it make a difference, when I am nott using Network-Manager. I do use the "old" ifupdown - its mor stable for me
BTW:
I did wonder why the package "sudo" was one of the stripped packages?
I had to reinstall it (also netcat and ifupdown).Maybe the minimal-image is missing some things that I need
Thinking about to put the minimal-image in standby for me...
-
-
13 minutes ago, Hijax said:
compile.sh EXTERNAL=no
with that option i do get here again the "Could not resolve localhost"-problem like before
-
2 minutes ago, Hijax said:
For minimal image building use EXTERNAL=no else you will return to the “server image” level.
So there is no option to do this via the menu-driven interface - the I think the only way is to set it in config-default-conf or use commandline-options...
-
4 minutes ago, Hijax said:
From operational point of view one shall not see any difference, I mean RAM usage shall stay on the same level.
OK

At my first try to install some software I had to use apt --fix-broken install because of
SpoilerReading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
armbian-config : Depends: curl but it is not going to be installed
Depends: resolvconf
Depends: build-essential but it is not going to be installed
Depends: software-properties-common but it is not going to be installed
gcc : Depends: cpp (= 4:8.3.0-1) but it is not going to be installed
Depends: gcc-8 (>= 8.3.0-1~) but it is not going to be installed
git : Depends: libpcre2-8-0 (>= 10.32) but it is not going to be installed
Depends: perl but it is not going to be installed
Depends: liberror-perl but it is not going to be installed
Depends: git-man (> 1:2.20.1) but it is not going to be installed
Depends: git-man (< 1:2.20.1-.) but it is not going to be installed
liblua5.3-dev : Depends: liblua5.3-0 (= 5.3.3-1.1) but it is not going to be installed
Depends: libc6-dev but it is not going to be installed or
libc-dev
Depends: libreadline-dev but it is not going to be installed
libncurses5-dev : Depends: libncurses-dev (= 6.1+20181013-2) but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).After the apt --fix-broken install the installation/download did start normally.
-
25 minutes ago, guidol said:
Now I will flash the image and see how/if it works

The image did boot fine - but the initial memory-footprint seems to be the same as the normal server-image: 75-80MB after boot.
So we did "only" reduce the image-size by around 500MB - but not the memory-footprint.
Are these the essential needed services?
-
@Hijax @Igor Today something has changed
(some commits/additions/deletions?)
The problem with the "could not resolve localhost" is gone - I didnt see that while compiling.
I used the menue-driven way : New OS-image -> OrangePiOne -> next -> buster -> server image -> minimal image and after compile I did get a
[ o.k. ] Done building [ /home/guido/build-mini/output/images/Armbian_5.91_Orangepione_Debian_buster_next_4.19.59_minimal.img ]
[ o.k. ] Repeat Build Options [ ./compile.sh BOARD=orangepione BRANCH=next RELEASE=buster BUILD_MINIMAL=yes BUILD_DESKTOP=no KERNEL_ONLY=no KERNEL_CONFIGURE=no ]
Now I will flash the image and see how/if it works





Orangepi 3 h6 allwiner chip
in Allwinner sunxi
Posted
My last test - 5 days ago - does show that on a fresh installed "normal" buster pi-hole does work now fine