Advertisement
Guest User

OpenCN Docker issues

a guest
Jul 13th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 148.44 KB | None | 0 0
  1. ➜ opencn git:(master) ✗ sudo docker build -t opencn/build-env docker/
  2. [+] Building 361.0s (6/6) FINISHED docker:default
  3. => [internal] load .dockerignore 0.1s
  4. => => transferring context: 2B 0.0s
  5. => [internal] load build definition from Dockerfile 0.1s
  6. => => transferring dockerfile: 3.62kB 0.0s
  7. => [internal] load metadata for docker.io/library/ubuntu:20.04 1.9s
  8. => [1/2] FROM docker.io/library/ubuntu:20.04@sha256:c9820a44b950956a790c354700c1166a7ec648bc0d215fa438d3a339812f1d01 5.3s
  9. => => resolve docker.io/library/ubuntu:20.04@sha256:c9820a44b950956a790c354700c1166a7ec648bc0d215fa438d3a339812f1d01 0.0s
  10. => => sha256:14be0685b7682b182af5b862c9638cb1cb4ca1a70bd5aa90deed96e9cca881e7 2.30kB / 2.30kB 0.0s
  11. => => sha256:01085d60b3a624c06a7132ff0749efc6e6565d9f2531d7685ff559fb5d0f669f 27.51MB / 27.51MB 4.7s
  12. => => sha256:c9820a44b950956a790c354700c1166a7ec648bc0d215fa438d3a339812f1d01 1.13kB / 1.13kB 0.0s
  13. => => sha256:8c38f4ea0b178a98e4f9f831b29b7966d6654414c1dc008591c6ec77de3bf2c9 424B / 424B 0.0s
  14. => => extracting sha256:01085d60b3a624c06a7132ff0749efc6e6565d9f2531d7685ff559fb5d0f669f 0.6s
  15. => [2/2] RUN ln -snf /usr/share/zoneinfo/Europe/Zurich /etc/localtime && echo Europe/Zurich > /etc/timezone && echo 'debconf debconf/frontend select Non 335.0s
  16. => exporting to image 18.6s
  17. => => exporting layers 18.6s
  18. => => writing image sha256:2a2f2ca7209bea0bc04b7249450a0fb7668e793067a5c86344d62c7b245d1d45 0.0s
  19. => => naming to docker.io/opencn/build-env 0.0s
  20. ➜ opencn git:(master) ✗ cd docker
  21. ➜ docker git:(master) ✗ ./build.sh
  22. docker: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create": dial unix /var/run/docker.sock: connect: permission denied.
  23. See 'docker run --help'.
  24. ➜ docker git:(master) ✗ sudo ./build.sh
  25. Usage: /home/reds/opencn/agency/build.sh [OPTIONS]
  26.  
  27. Where OPTIONS are:
  28. -a build all components
  29. -b build u-boot and/or qemu depending on the target
  30. -c clean the selected components (no action if used alone)
  31. -k build linux kernel
  32. -r build rootfs (secondary)
  33. -u build user apps
  34. -t select the wanted target. See below for the supported targets are:
  35. It has to be done at least once (creation of build.conf file)
  36.  
  37. Supported targets: rpi4_64 virt64 x86 x86-qemu cm4_64
  38.  
  39. ➜ docker git:(master) ✗ sudo ./build.sh -t x86
  40. ➜ docker git:(master) ✗ ./build.sh -a
  41. docker: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create": dial unix /var/run/docker.sock: connect: permission denied.
  42. See 'docker run --help'.
  43. ➜ docker git:(master) ✗ sudo ./build.sh -a
  44. read target from the file
  45. -- [ Build Linux kernel ] ----------------------------------
  46. LINUX_CONF=x86_defconfig
  47. ---------------------------------------------[ BUILDING linux ]---
  48. make -C linux x86_defconfig || exit -1
  49. make[1]: Entering directory '/home/reds/opencn/agency/linux'
  50. HOSTCC scripts/basic/fixdep
  51. HOSTCC scripts/kconfig/conf.o
  52. HOSTCC scripts/kconfig/confdata.o
  53. HOSTCC scripts/kconfig/expr.o
  54. HOSTCC scripts/kconfig/lexer.lex.o
  55. HOSTCC scripts/kconfig/parser.tab.o
  56. HOSTCC scripts/kconfig/preprocess.o
  57. HOSTCC scripts/kconfig/symbol.o
  58. HOSTLD scripts/kconfig/conf
  59. #
  60. # configuration written to .config
  61. #
  62. make[1]: Leaving directory '/home/reds/opencn/agency/linux'
  63. make -C linux -rR --no-print-directory bzImage -j$(nproc) || exit -1
  64. scripts/kconfig/conf --syncconfig Kconfig
  65. HOSTCC arch/x86/tools/relocs_32.o
  66. HOSTCC arch/x86/tools/relocs_64.o
  67. HOSTCC arch/x86/tools/relocs_common.o
  68. warning: Cannot use CONFIG_STACK_VALIDATION=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel
  69. HOSTCC scripts/kallsyms
  70. HOSTCC scripts/pnmtologo
  71. HOSTCC scripts/conmakehash
  72. HOSTCC scripts/sortextable
  73. HOSTCC scripts/genksyms/genksyms.o
  74. HOSTCC scripts/asn1_compiler
  75. HOSTCC scripts/genksyms/parse.tab.o
  76. HOSTCC scripts/genksyms/lex.lex.o
  77. HOSTLD arch/x86/tools/relocs
  78. HOSTLD scripts/genksyms/genksyms
  79. HOSTCC scripts/mod/mk_elfconfig
  80. CC scripts/mod/empty.o
  81. CC scripts/mod/devicetable-offsets.s
  82. MKELF scripts/mod/elfconfig.h
  83. HOSTCC scripts/mod/modpost.o
  84. HOSTCC scripts/mod/file2alias.o
  85. HOSTCC scripts/mod/sumversion.o
  86. HOSTLD scripts/mod/modpost
  87. CC kernel/bounds.s
  88. CALL scripts/atomic/check-atomics.sh
  89. CC arch/x86/kernel/asm-offsets.s
  90. CALL scripts/checksyscalls.sh
  91. HOSTCC usr/gen_init_cpio
  92. AS arch/x86/entry/entry_64.o
  93. AS arch/x86/entry/thunk_64.o
  94. CC arch/x86/realmode/init.o
  95. CC arch/x86/events/core.o
  96. CC init/main.o
  97. CC arch/x86/platform/intel/iosf_mbi.o
  98. CC arch/x86/events/probe.o
  99. CC arch/x86/mm/init.o
  100. CC arch/x86/mm/init_64.o
  101. CC mm/filemap.o
  102. CC kernel/fork.o
  103. GEN usr/initramfs_data.cpio.gz
  104. CC arch/x86/kernel/process_64.o
  105. CC arch/x86/entry/syscall_64.o
  106. AS arch/x86/realmode/rm/header.o
  107. CC arch/x86/kernel/signal.o
  108. AS arch/x86/realmode/rm/trampoline_64.o
  109. AS arch/x86/realmode/rm/stack.o
  110. AS arch/x86/realmode/rm/reboot.o
  111. CC arch/x86/entry/common.o
  112. PASYMS arch/x86/realmode/rm/pasyms.h
  113. LDS arch/x86/realmode/rm/realmode.lds
  114. LD arch/x86/realmode/rm/realmode.elf
  115. RELOCS arch/x86/realmode/rm/realmode.relocs
  116. OBJCOPY arch/x86/realmode/rm/realmode.bin
  117. AS arch/x86/realmode/rmpiggy.o
  118. AR arch/x86/platform/intel/built-in.a
  119. AR arch/x86/realmode/built-in.a
  120. CC arch/x86/mm/fault.o
  121. AR arch/x86/platform/built-in.a
  122. CC arch/x86/entry/vdso/vma.o
  123. AS usr/initramfs_data.o
  124. AR usr/built-in.a
  125. CC arch/x86/kernel/traps.o
  126. CC arch/x86/events/amd/core.o
  127. CC arch/x86/events/amd/uncore.o
  128. CC fs/open.o
  129. CC arch/x86/events/amd/ibs.o
  130. LDS arch/x86/entry/vdso/vdso.lds
  131. CHK include/generated/compile.h
  132. CC init/do_mounts.o
  133. AS arch/x86/entry/vdso/vdso-note.o
  134. UPD include/generated/compile.h
  135. CC arch/x86/entry/vsyscall/vsyscall_64.o
  136. CC arch/x86/entry/vdso/vclock_gettime.o
  137. CC ipc/util.o
  138. CC arch/x86/mm/ioremap.o
  139. CC arch/x86/entry/vdso/vgetcpu.o
  140. CC arch/x86/kernel/idt.o
  141. HOSTCC arch/x86/entry/vdso/vdso2c
  142. AS arch/x86/entry/vsyscall/vsyscall_emu_64.o
  143. AR arch/x86/entry/vsyscall/built-in.a
  144. CC arch/x86/kernel/irq.o
  145. CC arch/x86/kernel/irq_64.o
  146. CC fs/read_write.o
  147. VDSO arch/x86/entry/vdso/vdso64.so.dbg
  148. OBJCOPY arch/x86/entry/vdso/vdso64.so
  149. VDSO2C arch/x86/entry/vdso/vdso-image-64.c
  150. CC arch/x86/entry/vdso/vdso-image-64.o
  151. CC kernel/exec_domain.o
  152. CC arch/x86/kernel/dumpstack_64.o
  153. AR arch/x86/entry/vdso/built-in.a
  154. AR arch/x86/entry/built-in.a
  155. AR arch/x86/events/amd/built-in.a
  156. CC arch/x86/kernel/time.o
  157. CC arch/x86/events/intel/core.o
  158. CC ipc/msgutil.o
  159. CC arch/x86/kernel/ioport.o
  160. CC mm/mempool.o
  161. CC kernel/panic.o
  162. CC init/do_mounts_initrd.o
  163. CC arch/x86/mm/extable.o
  164. CC kernel/cpu.o
  165. CC ipc/msg.o
  166. CC arch/x86/kernel/dumpstack.o
  167. CC init/initramfs.o
  168. CC arch/x86/kernel/nmi.o
  169. CC kernel/exit.o
  170. CC kernel/softirq.o
  171. CC arch/x86/kernel/ldt.o
  172. CC mm/oom_kill.o
  173. CC kernel/resource.o
  174. CC fs/file_table.o
  175. CC ipc/sem.o
  176. CC init/calibrate.o
  177. CC arch/x86/mm/pageattr.o
  178. CC init/init_task.o
  179. CC arch/x86/kernel/setup.o
  180. CC arch/x86/events/intel/bts.o
  181. CC kernel/sysctl.o
  182. CC kernel/sysctl_binary.o
  183. CC kernel/capability.o
  184. CC kernel/ptrace.o
  185. CC fs/super.o
  186. CC arch/x86/events/intel/ds.o
  187. CC init/version.o
  188. CC ipc/shm.o
  189. CC mm/fadvise.o
  190. CC arch/x86/mm/mmap.o
  191. CC mm/maccess.o
  192. AR init/built-in.a
  193. CC kernel/user.o
  194. CC security/keys/gc.o
  195. CC arch/x86/kernel/x86_init.o
  196. CC arch/x86/mm/pat.o
  197. CC arch/x86/events/msr.o
  198. CC mm/page-writeback.o
  199. CC security/keys/key.o
  200. CC ipc/syscall.o
  201. CC kernel/signal.o
  202. CC mm/readahead.o
  203. CC mm/swap.o
  204. CC arch/x86/events/intel/knc.o
  205. CC fs/char_dev.o
  206. CC arch/x86/kernel/i8259.o
  207. CC fs/stat.o
  208. CC kernel/sys.o
  209. CC ipc/ipc_sysctl.o
  210. CC arch/x86/events/intel/lbr.o
  211. AR ipc/built-in.a
  212. CC arch/x86/mm/pgtable.o
  213. CC security/keys/keyring.o
  214. CC arch/x86/kernel/irqinit.o
  215. CC crypto/api.o
  216. CC mm/truncate.o
  217. CC block/bio.o
  218. CC arch/x86/mm/physaddr.o
  219. CC fs/exec.o
  220. CC arch/x86/events/intel/p4.o
  221. CC mm/vmscan.o
  222. CC kernel/umh.o
  223. CC arch/x86/kernel/jump_label.o
  224. CC arch/x86/mm/setup_nx.o
  225. CC security/keys/keyctl.o
  226. CC crypto/cipher.o
  227. CC crypto/compress.o
  228. CC arch/x86/kernel/irq_work.o
  229. CC arch/x86/events/intel/p6.o
  230. CC arch/x86/kernel/probe_roms.o
  231. CC mm/shmem.o
  232. CC arch/x86/mm/tlb.o
  233. CC arch/x86/kernel/sys_x86_64.o
  234. CC crypto/memneq.o
  235. CC crypto/algapi.o
  236. CC arch/x86/events/intel/pt.o
  237. CC kernel/workqueue.o
  238. CC security/keys/permission.o
  239. CC block/elevator.o
  240. CC arch/x86/kernel/espfix_64.o
  241. CC block/blk-core.o
  242. CC fs/pipe.o
  243. CC crypto/scatterwalk.o
  244. CC arch/x86/mm/cpu_entry_area.o
  245. CC arch/x86/kernel/ksysfs.o
  246. CC security/keys/process_keys.o
  247. CC arch/x86/events/intel/rapl.o
  248. CC crypto/proc.o
  249. CC arch/x86/kernel/bootflag.o
  250. CC arch/x86/mm/pat_rbtree.o
  251. CC crypto/aead.o
  252. CC block/blk-sysfs.o
  253. CC crypto/ablkcipher.o
  254. CC mm/util.o
  255. CC crypto/blkcipher.o
  256. CC fs/namei.o
  257. CC arch/x86/kernel/e820.o
  258. CC arch/x86/events/intel/uncore.o
  259. CC arch/x86/mm/hugetlbpage.o
  260. CC security/keys/request_key.o
  261. CC kernel/pid.o
  262. CC arch/x86/mm/pkeys.o
  263. CC soo/sooenv.o
  264. CC crypto/skcipher.o
  265. CC crypto/seqiv.o
  266. CC crypto/echainiv.o
  267. CC mm/mmzone.o
  268. CC block/blk-flush.o
  269. CC arch/x86/events/intel/uncore_nhmex.o
  270. CC arch/x86/kernel/pci-dma.o
  271. CC security/keys/request_key_auth.o
  272. AR arch/x86/mm/built-in.a
  273. CC arch/x86/kernel/quirks.o
  274. CC mm/vmstat.o
  275. CC soo/core/core.o
  276. CC kernel/task_work.o
  277. CC soo/drivers/vdevback.o
  278. CC security/keys/user_defined.o
  279. CC soo/drivers/vdevfront.o
  280. soo/core/core.c:268:30: warning: 'agency_reboot_nb' defined but not used [-Wunused-variable]
  281. 268 | static struct notifier_block agency_reboot_nb = {
  282. | ^~~~~~~~~~~~~~~~
  283. CC soo/core/crc32.o
  284. CC kernel/extable.o
  285. CC arch/x86/events/intel/uncore_snb.o
  286. CC soo/core/sysfs.o
  287. CC block/blk-settings.o
  288. CC fs/fcntl.o
  289. CC arch/x86/kernel/topology.o
  290. CC arch/x86/kernel/kdebugfs.o
  291. AR soo/drivers/built-in.a
  292. CC crypto/ahash.o
  293. CC soo/kernel/console/console.o
  294. CC soo/core/device_access.o
  295. CC security/keys/proc.o
  296. CC arch/x86/events/intel/uncore_snbep.o
  297. CC security/keys/sysctl.o
  298. CC mm/backing-dev.o
  299. CC security/keys/keyctl_pkey.o
  300. CC kernel/params.o
  301. CC soo/kernel/console/lprintk.o
  302. CC arch/x86/kernel/alternative.o
  303. CC arch/x86/kernel/i8253.o
  304. AR soo/core/built-in.a
  305. CC soo/rtapp.o
  306. CC block/blk-ioc.o
  307. CC crypto/shash.o
  308. AR security/keys/built-in.a
  309. CC arch/x86/events/intel/cstate.o
  310. CC security/commoncap.o
  311. CC fs/ioctl.o
  312. soo/rtapp.c: In function 'my_rt_task1_fn':
  313. soo/rtapp.c:134:6: warning: unused variable 'toggle' [-Wunused-variable]
  314. 134 | int toggle = 0;
  315. | ^~~~~~
  316. soo/rtapp.c:133:6: warning: unused variable 'i' [-Wunused-variable]
  317. 133 | int i = 0;
  318. | ^
  319. soo/rtapp.c: In function 'rt_task3_fn':
  320. soo/rtapp.c:183:6: warning: unused variable 'toggle' [-Wunused-variable]
  321. 183 | int toggle = 0;
  322. | ^~~~~~
  323. soo/rtapp.c: In function 'async_event_test':
  324. soo/rtapp.c:319:13: warning: unused variable 'count' [-Wunused-variable]
  325. 319 | static int count = 0;
  326. | ^~~~~
  327. At top level:
  328. soo/rtapp.c:319:13: warning: 'count' defined but not used [-Wunused-variable]
  329. soo/rtapp.c:237:13: warning: 'rt_task_2_fn' defined but not used [-Wunused-function]
  330. 237 | static void rt_task_2_fn(void *args) {
  331. | ^~~~~~~~~~~~
  332. soo/rtapp.c:180:13: warning: 'rt_task3_fn' defined but not used [-Wunused-function]
  333. 180 | static void rt_task3_fn(void *args) {
  334. | ^~~~~~~~~~~
  335. soo/rtapp.c:164:13: warning: 'rt_task2_fn' defined but not used [-Wunused-function]
  336. 164 | static void rt_task2_fn(void *args) {
  337. | ^~~~~~~~~~~
  338. CC security/min_addr.o
  339. AR soo/kernel/console/built-in.a
  340. CC block/blk-map.o
  341. CC soo/kernel/debug/gpio.o
  342. CC soo/kernel/debug/time.o
  343. CC kernel/kthread.o
  344. CC kernel/sys_ni.o
  345. CC soo/kernel/debug/meminfo.o
  346. CC soo/kernel/debug/logbool.o
  347. AR arch/x86/events/intel/built-in.a
  348. AR arch/x86/events/built-in.a
  349. CC soo/kernel/debug/dbglib.o
  350. CC block/blk-exec.o
  351. CC mm/mm_init.o
  352. CC block/blk-merge.o
  353. CC fs/readdir.o
  354. CC arch/x86/kernel/hw_breakpoint.o
  355. CC arch/x86/xenomai/machine.o
  356. AR security/built-in.a
  357. CC opencn/opencn.o
  358. CC crypto/akcipher.o
  359. AR soo/kernel/debug/built-in.a
  360. CC soo/kernel/vbstore/vbstore.o
  361. CC opencn/backend/vlog.o
  362. CC opencn/components/feedopt/feedopt.o
  363. CC arch/x86/xenomai/mayday.o
  364. CC mm/mmu_context.o
  365. CC opencn/components/feedopt/feedopt_fp.o
  366. opencn/components/feedopt/feedopt.c: In function 'feedopt_ioctl':
  367. opencn/components/feedopt/feedopt.c:389:2: warning: #warning Check if already present (initialized) ... [-Wcpp]
  368. 389 | #warning Check if already present (initialized) ...
  369. | ^~~~~~~
  370. soo/kernel/vbstore/vbstore.c: In function 'vbs_s_write':
  371. soo/kernel/vbstore/vbstore.c:105:2: warning: #warning assert that the ring is not full [-Wcpp]
  372. 105 | #warning assert that the ring is not full
  373. | ^~~~~~~
  374. CC opencn/components/kinematic/kinematic.o
  375. CC crypto/kpp.o
  376. CC opencn/components/kinematic/kinematic_hal.o
  377. AR opencn/components/feedopt/built-in.a
  378. CC crypto/acompress.o
  379. CC arch/x86/kernel/tsc.o
  380. CC kernel/nsproxy.o
  381. AR opencn/backend/built-in.a
  382. CC kernel/notifier.o
  383. CC soo/kernel/vbstore/vbstorage.o
  384. CC fs/select.o
  385. CC arch/x86/xenomai/thread.o
  386. CC block/blk-softirq.o
  387. CC opencn/components/kinematic/kinematic_corexy.o
  388. CC mm/percpu.o
  389. CC opencn/components/kinematic/kinematic_trivial.o
  390. CC mm/slab_common.o
  391. CC opencn/components/kinematic/kinematic_xyzbc.o
  392. CC arch/x86/xenomai/smi.o
  393. AR soo/kernel/vbstore/built-in.a
  394. CC block/blk-timeout.o
  395. CC arch/x86/kernel/tsc_msr.o
  396. CC soo/kernel/vbus/vbus_client.o
  397. CC crypto/scompress.o
  398. CC crypto/algboss.o
  399. AR opencn/components/kinematic/built-in.a
  400. CC opencn/components/lcct/lcct.o
  401. CC kernel/ksysfs.o
  402. CC opencn/components/lcct/lcct_rt.o
  403. CC arch/x86/kernel/io_delay.o
  404. CC arch/x86/xenomai/c1e.o
  405. CC kernel/cred.o
  406. AR arch/x86/xenomai/built-in.a
  407. CC opencn/components/lcct/lcct_home.o
  408. CC opencn/components/lcec/lcec.o
  409. CC arch/x86/kernel/rtc.o
  410. CC block/blk-lib.o
  411. CC crypto/testmgr.o
  412. CC soo/kernel/vbus/vbus_vbstore.o
  413. CC kernel/reboot.o
  414. CC crypto/cmac.o
  415. CC opencn/components/lcct/lcct_jog.o
  416. CC fs/dcache.o
  417. opencn/components/lcec/lcec.c: In function 'lcec_cyclic_task':
  418. opencn/components/lcec/lcec.c:523:2: warning: #warning is it the correct action in case of errer ?? [-Wcpp]
  419. 523 | #warning is it the correct action in case of errer ??
  420. | ^~~~~~~
  421. opencn/components/lcec/lcec.c: In function 'lcec_ioctl':
  422. opencn/components/lcec/lcec.c:925:2: warning: #warning Check if already present (initialized) ... [-Wcpp]
  423. 925 | #warning Check if already present (initialized) ...
  424. | ^~~~~~~
  425. soo/kernel/vbus/vbus_vbstore.c: In function 'vbs_write':
  426. soo/kernel/vbus/vbus_vbstore.c:145:2: warning: #warning assert that the ring is not full [-Wcpp]
  427. 145 | #warning assert that the ring is not full
  428. | ^~~~~~~
  429. CC fs/inode.o
  430. CC opencn/components/lcct/lcct_stream.o
  431. CC opencn/components/lcec/lcec_conf.o
  432. CC crypto/hmac.o
  433. CC mm/compaction.o
  434. CC kernel/async.o
  435. CC crypto/crypto_null.o
  436. CC arch/x86/kernel/pci-iommu_table.o
  437. CC block/blk-mq.o
  438. CC opencn/components/lcct/lcct_gcode.o
  439. CC soo/kernel/vbus/rtdm_vbus_vbstore.o
  440. CC opencn/components/lcec/lcec_cycle_task.o
  441. CC arch/x86/kernel/resource.o
  442. soo/kernel/vbus/vbus_vbstore.c:145:2: warning: #warning assert that the ring is not full [-Wcpp]
  443. 145 | #warning assert that the ring is not full
  444. | ^~~~~~~
  445. CC mm/vmacache.o
  446. CC crypto/md5.o
  447. AS arch/x86/kernel/irqflags.o
  448. CC soo/kernel/vbus/rtdm_vbus.o
  449. CC kernel/range.o
  450. CC kernel/smpboot.o
  451. AR opencn/components/lcct/built-in.a
  452. soo/kernel/vbus/rtdm_vbus_vbstore.c: In function 'vbs_write':
  453. soo/kernel/vbus/rtdm_vbus_vbstore.c:300:2: warning: #warning assert that the ring is not full [-Wcpp]
  454. 300 | #warning assert that the ring is not full
  455. | ^~~~~~~
  456. CC arch/x86/kernel/process.o
  457. CC kernel/ucount.o
  458. CC arch/x86/kernel/acpi/boot.o
  459. CC opencn/components/lcec/lcec_el1252.o
  460. CC mm/interval_tree.o
  461. CC soo/kernel/vbus/vbus.o
  462. CC fs/attr.o
  463. CC crypto/sha1_generic.o
  464. CC opencn/components/lcec/lcec_el2252.o
  465. CC soo/kernel/vbus/vbus_backend.o
  466. CC kernel/kmod.o
  467. CC crypto/sha256_generic.o
  468. CC fs/bad_inode.o
  469. CC mm/list_lru.o
  470. CC opencn/components/lcec/lcec_tsd80e.o
  471. CC fs/file.o
  472. CC arch/x86/kernel/acpi/cstate.o
  473. opencn/components/lcec/lcec_tsd80e.c: In function 'axis_write_cw':
  474. opencn/components/lcec/lcec_tsd80e.c:459:2: warning: #warning Set the axis in init mode also ! [-Wcpp]
  475. 459 | #warning Set the axis in init mode also !
  476. | ^~~~~~~
  477. CC fs/filesystems.o
  478. CC crypto/gf128mul.o
  479. CC fs/namespace.o
  480. CC fs/seq_file.o
  481. AR soo/kernel/vbus/built-in.a
  482. CC soo/kernel/x86/paging.o
  483. CC opencn/components/lcec/lcec_ax5100.o
  484. CC kernel/groups.o
  485. CC arch/x86/kernel/apic/apic.o
  486. CC block/blk-mq-tag.o
  487. AR soo/kernel/x86/built-in.a
  488. CC soo/kernel/setup.o
  489. CC mm/workingset.o
  490. CC opencn/components/lcec/lcec_ax5200.o
  491. AR arch/x86/kernel/acpi/built-in.a
  492. CC crypto/cbc.o
  493. CC soo/kernel/hypervisor.o
  494. CC arch/x86/kernel/cpu/cacheinfo.o
  495. CC crypto/ctr.o
  496. CC fs/xattr.o
  497. CC mm/debug.o
  498. CC opencn/components/lcec/lcec_companion.o
  499. CC fs/libfs.o
  500. CC kernel/bpf/core.o
  501. CC crypto/gcm.o
  502. CC soo/kernel/evtchn.o
  503. CC block/blk-stat.o
  504. opencn/components/lcec/lcec_companion.c:30:2: warning: #warning COMP_PWM_VAL_MAX value should be shared with companion driver [-Wcpp]
  505. 30 | #warning COMP_PWM_VAL_MAX value should be shared with companion driver
  506. | ^~~~~~~
  507. CC soo/kernel/gnttab.o
  508. CC opencn/components/lcec/lcec_el7411.o
  509. CC arch/x86/kernel/cpu/scattered.o
  510. CC arch/x86/kernel/cpu/topology.o
  511. CC opencn/components/lcec/lcec_el1xxx.o
  512. CC arch/x86/kernel/apic/apic_common.o
  513. CC fs/fs-writeback.o
  514. CC mm/gup.o
  515. CC soo/kernel/soo_guest_activity.o
  516. CC crypto/ccm.o
  517. CC opencn/components/lcec/lcec_el2xxx.o
  518. CC block/blk-mq-sysfs.o
  519. CC block/blk-mq-cpumap.o
  520. CC opencn/components/lcec/lcec_el3702.o
  521. CC arch/x86/kernel/cpu/common.o
  522. CC fs/pnode.o
  523. CC arch/x86/kernel/apic/apic_noop.o
  524. CC opencn/components/lcec/lcec_el32xx.o
  525. AR soo/kernel/built-in.a
  526. AR soo/built-in.a
  527. CC opencn/components/lcec/lcec_cteu_fix.o
  528. CC arch/x86/kernel/apic/ipi.o
  529. CC arch/x86/kernel/apic/vector.o
  530. CC fs/splice.o
  531. CC crypto/des_generic.o
  532. opencn/components/lcec/lcec_cteu_fix.c:23:2: warning: #warning Number of IN & OUT PDOs should come from XML config file (ref issue #146) [-Wcpp]
  533. 23 | #warning Number of IN & OUT PDOs should come from XML config file (ref issue #146)
  534. | ^~~~~~~
  535. CC drivers/ata/libata-core.o
  536. CC drivers/acpi/tables.o
  537. AR opencn/components/lcec/built-in.a
  538. CC fs/sync.o
  539. CC opencn/components/loopback/loopback.o
  540. CC block/blk-mq-sched.o
  541. CC crypto/aes_generic.o
  542. AR opencn/components/loopback/built-in.a
  543. CC opencn/components/mux/mux.o
  544. AR kernel/bpf/built-in.a
  545. CC kernel/cgroup/cgroup.o
  546. CC drivers/acpi/blacklist.o
  547. CC mm/highmem.o
  548. CC arch/x86/kernel/cpu/rdrand.o
  549. AR opencn/components/mux/built-in.a
  550. CC arch/x86/kernel/cpu/match.o
  551. CC opencn/components/ocno/ocno.o
  552. CC drivers/acpi/osi.o
  553. CC opencn/components/plc/plc.o
  554. CC mm/memory.o
  555. CC arch/x86/kernel/apic/hw_nmi.o
  556. CC crypto/arc4.o
  557. CC block/ioctl.o
  558. CC fs/utimes.o
  559. CC opencn/components/ocno/ocno_core.o
  560. CC block/genhd.o
  561. CC arch/x86/kernel/cpu/bugs.o
  562. CC opencn/components/plc/micro5.o
  563. CC crypto/crc32c_generic.o
  564. CC arch/x86/kernel/apic/io_apic.o
  565. CC drivers/acpi/osl.o
  566. CC opencn/components/ocno/ocno_homing.o
  567. CC opencn/components/plc/spindle.o
  568. CC fs/d_path.o
  569. opencn/components/plc/spindle.c: In function 'spindle_get_interpolation':
  570. opencn/components/plc/spindle.c:273:1: warning: control reaches end of non-void function [-Wreturn-type]
  571. 273 | }
  572. | ^
  573. CC crypto/crct10dif_common.o
  574. CC opencn/components/plc/ocno_debug.o
  575. CC opencn/components/ocno/ocno_jog.o
  576. CC drivers/acpi/utils.o
  577. CC crypto/crct10dif_generic.o
  578. CC arch/x86/kernel/cpu/aperfmperf.o
  579. AR opencn/components/plc/built-in.a
  580. CC opencn/components/sampler/sampler.o
  581. CC opencn/components/ocno/ocno_machining.o
  582. CC block/partition-generic.o
  583. CC arch/x86/kernel/cpu/cpuid-deps.o
  584. CC fs/stack.o
  585. opencn/components/sampler/sampler.c: In function 'sampler_ioctl':
  586. opencn/components/sampler/sampler.c:447:2: warning: #warning Check if already present (initialized) ... [-Wcpp]
  587. 447 | #warning Check if already present (initialized) ...
  588. | ^~~~~~~
  589. CC drivers/acpi/reboot.o
  590. CC drivers/ata/libata-scsi.o
  591. CC crypto/authenc.o
  592. AR opencn/components/sampler/built-in.a
  593. CC opencn/components/simple_pg/simple_pg.o
  594. AR opencn/components/ocno/built-in.a
  595. CC opencn/components/streamer/streamer.o
  596. CC arch/x86/kernel/cpu/umwait.o
  597. CC drivers/acpi/nvs.o
  598. CC arch/x86/kernel/apic/msi.o
  599. CC drivers/acpi/wakeup.o
  600. CC fs/fs_struct.o
  601. AR opencn/components/simple_pg/built-in.a
  602. opencn/components/streamer/streamer.c: In function 'streamer_ioctl':
  603. opencn/components/streamer/streamer.c:535:2: warning: #warning Check if already present (initialized) ... [-Wcpp]
  604. 535 | #warning Check if already present (initialized) ...
  605. | ^~~~~~~
  606. CC opencn/components/threads/threads.o
  607. CC kernel/cgroup/rstat.o
  608. CC drivers/acpi/sleep.o
  609. CC mm/mincore.o
  610. AR opencn/components/streamer/built-in.a
  611. CC mm/mlock.o
  612. CC block/ioprio.o
  613. CC fs/statfs.o
  614. AR opencn/components/threads/built-in.a
  615. AR opencn/components/built-in.a
  616. CC opencn/frontend/vlog.o
  617. CC arch/x86/kernel/cpu/proc.o
  618. CC block/badblocks.o
  619. CC crypto/authencesn.o
  620. CC arch/x86/kernel/apic/apic_flat_64.o
  621. CC drivers/acpi/device_sysfs.o
  622. opencn/frontend/vlog.c: In function 'vlog_free_sring':
  623. opencn/frontend/vlog.c:147:2: warning: #warning still dc_vlog_free to be implemented... [-Wcpp]
  624. 147 | #warning still dc_vlog_free to be implemented...
  625. | ^~~~~~~
  626. CC kernel/cgroup/namespace.o
  627. CC arch/x86/kernel/cpu/capflags.o
  628. CC block/partitions/check.o
  629. AR opencn/frontend/built-in.a
  630. CC arch/x86/kernel/cpu/powerflags.o
  631. CC opencn/hal/hal_lib.o
  632. CC arch/x86/kernel/cpu/intel.o
  633. CC block/blk-rq-qos.o
  634. CC fs/fs_pin.o
  635. CC arch/x86/kernel/apic/probe_64.o
  636. CC block/bounce.o
  637. opencn/hal/hal_lib.c: In function 'hal_create_thread_low_level':
  638. opencn/hal/hal_lib.c:1978:2: warning: #warning to double check in case of custom threads [-Wcpp]
  639. 1978 | #warning to double check in case of custom threads
  640. | ^~~~~~~
  641. CC crypto/rng.o
  642. CC mm/mmap.o
  643. CC block/partitions/amiga.o
  644. CC drivers/ata/libata-eh.o
  645. CC drivers/acpi/device_pm.o
  646. AR arch/x86/kernel/apic/built-in.a
  647. CC kernel/cgroup/cgroup-v1.o
  648. CC drivers/acpi/bus.o
  649. CC arch/x86/kernel/cpu/intel_pconfig.o
  650. CC fs/nsfs.o
  651. CC arch/x86/kernel/cpu/tsx.o
  652. CC block/partitions/mac.o
  653. CC block/partitions/msdos.o
  654. CC arch/x86/kernel/cpu/amd.o
  655. CC block/scsi_ioctl.o
  656. CC arch/x86/kernel/cpu/hygon.o
  657. CC crypto/drbg.o
  658. CC fs/fs_types.o
  659. CC block/partitions/osf.o
  660. CC block/mq-deadline.o
  661. CC arch/x86/kernel/cpu/centaur.o
  662. CC kernel/cgroup/freezer.o
  663. opencn/hal/hal_lib.c:1978:2: warning: #warning to double check in case of custom threads [-Wcpp]
  664. 1978 | #warning to double check in case of custom threads
  665. | ^~~~~~~
  666. CC opencn/hal/halcmd.o
  667. CC drivers/acpi/glue.o
  668. CC drivers/acpi/scan.o
  669. CC arch/x86/kernel/cpu/zhaoxin.o
  670. CC fs/fs_context.o
  671. CC block/partitions/efi.o
  672. CC crypto/jitterentropy.o
  673. CC crypto/jitterentropy-kcapi.o
  674. opencn/hal/halcmd.c: In function 'hal_ioctl':
  675. opencn/hal/halcmd.c:1405:2: warning: #warning checking if kernel_fpu_begin() is still needed ! [-Wcpp]
  676. 1405 | #warning checking if kernel_fpu_begin() is still needed !
  677. | ^~~~~~~
  678. CC block/kyber-iosched.o
  679. CC arch/x86/kernel/cpu/mce/core.o
  680. AR kernel/cgroup/built-in.a
  681. CC arch/x86/kernel/cpu/microcode/core.o
  682. CC kernel/dma/mapping.o
  683. CC mm/mmu_gather.o
  684. CC drivers/ata/libata-transport.o
  685. AR opencn/hal/built-in.a
  686. CC crypto/ghash-generic.o
  687. CC opencn/lib/ctype.o
  688. AR block/partitions/built-in.a
  689. CC opencn/lib/logfile.o
  690. CC drivers/acpi/resource.o
  691. CC block/bio-integrity.o
  692. CC arch/x86/kernel/cpu/microcode/intel.o
  693. CC fs/fs_parser.o
  694. CC mm/mprotect.o
  695. CC kernel/dma/direct.o
  696. CC drivers/acpi/acpi_processor.o
  697. CC opencn/lib/strings.o
  698. CC crypto/asymmetric_keys/asymmetric_type.o
  699. CC drivers/ata/libata-trace.o
  700. CC opencn/lib/strtox.o
  701. CC drivers/acpi/processor_core.o
  702. CC drivers/acpi/processor_pdc.o
  703. CC arch/x86/kernel/cpu/microcode/amd.o
  704. CC opencn/lib/strtod.o
  705. CC block/blk-integrity.o
  706. CC fs/fsopen.o
  707. CC drivers/ata/libata-sff.o
  708. CC arch/x86/kernel/cpu/mce/severity.o
  709. CC mm/mremap.o
  710. CC crypto/asymmetric_keys/restrict.o
  711. CC kernel/dma/dummy.o
  712. CC block/t10-pi.o
  713. CC block/blk-mq-pci.o
  714. CC drivers/acpi/ec.o
  715. AR arch/x86/kernel/cpu/microcode/built-in.a
  716. CC drivers/acpi/pci_root.o
  717. CC crypto/asymmetric_keys/signature.o
  718. CC arch/x86/kernel/cpu/mce/genpool.o
  719. CC fs/buffer.o
  720. CC block/blk-mq-debugfs.o
  721. CC mm/msync.o
  722. CC arch/x86/kernel/cpu/mce/intel.o
  723. CC kernel/dma/swiotlb.o
  724. CC crypto/asymmetric_keys/public_key.o
  725. ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
  726. ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
  727. CC opencn/lib/vfprintf.o
  728. CC crypto/asymmetric_keys/x509_public_key.o
  729. CC drivers/acpi/pci_link.o
  730. CC arch/x86/kernel/cpu/mce/amd.o
  731. ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
  732. CC arch/x86/kernel/cpu/mce/threshold.o
  733. CC mm/page_vma_mapped.o
  734. CC crypto/asymmetric_keys/pkcs7_trust.o
  735. CC drivers/acpi/pci_irq.o
  736. CC drivers/ata/libata-pmp.o
  737. CC opencn/rtapi/opencn_rtapi.o
  738. CC arch/x86/kernel/cpu/mce/therm_throt.o
  739. CC crypto/asymmetric_keys/pkcs7_verify.o
  740. CC opencn/master/coe_emerg_ring.o
  741. AR block/built-in.a
  742. CC mm/pagewalk.o
  743. CC mm/pgtable-generic.o
  744. AR opencn/lib/built-in.a
  745. AR kernel/dma/built-in.a
  746. CC opencn/master/datagram.o
  747. CC kernel/events/core.o
  748. CC drivers/acpi/acpi_lpss.o
  749. opencn/rtapi/opencn_rtapi.c: In function 'rtapi_wait':
  750. opencn/rtapi/opencn_rtapi.c:769:2: warning: #warning still must adapt return of wait_period... [-Wcpp]
  751. 769 | #warning still must adapt return of wait_period...
  752. | ^~~~~~~
  753. CC opencn/master/datagram_pair.o
  754. CC mm/rmap.o
  755. CC opencn/master/device.o
  756. CC crypto/asymmetric_keys/x509.asn1.o
  757. CC crypto/asymmetric_keys/x509_akid.asn1.o
  758. CC crypto/asymmetric_keys/x509_cert_parser.o
  759. CC opencn/soo/hypervisor.o
  760. CC drivers/acpi/acpi_apd.o
  761. CC drivers/ata/libata-acpi.o
  762. CC arch/x86/kernel/cpu/mtrr/mtrr.o
  763. CC drivers/ata/ahci.o
  764. CC fs/block_dev.o
  765. AR arch/x86/kernel/cpu/mce/built-in.a
  766. CC arch/x86/kernel/cpu/perfctr-watchdog.o
  767. CC drivers/acpi/acpi_platform.o
  768. CC crypto/asymmetric_keys/pkcs7.asn1.o
  769. opencn/rtapi/opencn_rtapi.c:769:2: warning: #warning still must adapt return of wait_period... [-Wcpp]
  770. 769 | #warning still must adapt return of wait_period...
  771. | ^~~~~~~
  772. CC opencn/soo/evtchn-mgr.o
  773. AR opencn/rtapi/built-in.a
  774. CC drivers/acpi/acpi_pnp.o
  775. CC crypto/asymmetric_keys/pkcs7_parser.o
  776. CC mm/vmalloc.o
  777. CC opencn/master/domain.o
  778. AR opencn/soo/built-in.a
  779. CC arch/x86/kernel/cpu/mtrr/if.o
  780. CC drivers/ata/libahci.o
  781. CC arch/x86/pci/i386.o
  782. CC drivers/acpi/power.o
  783. AR crypto/asymmetric_keys/built-in.a
  784. CC arch/x86/pci/init.o
  785. CC crypto/hash_info.o
  786. CC arch/x86/pci/direct.o
  787. CC drivers/ata/ata_piix.o
  788. AR crypto/built-in.a
  789. CC arch/x86/kernel/cpu/mtrr/generic.o
  790. CC arch/x86/video/fbdev.o
  791. CC arch/x86/pci/fixup.o
  792. CC fs/direct-io.o
  793. CC arch/x86/pci/acpi.o
  794. CC drivers/acpi/event.o
  795. CC opencn/master/fmmu_config.o
  796. CC opencn/master/foe_request.o
  797. CC arch/x86/pci/legacy.o
  798. CC opencn/master/fsm_change.o
  799. CC arch/x86/pci/irq.o
  800. CC mm/process_vm_access.o
  801. CC arch/x86/kernel/cpu/mtrr/cleanup.o
  802. AR arch/x86/video/built-in.a
  803. CC net/socket.o
  804. CC opencn/master/fsm_coe.o
  805. CC drivers/ata/pata_amd.o
  806. CC drivers/acpi/sysfs.o
  807. AR arch/x86/kernel/cpu/mtrr/built-in.a
  808. AR arch/x86/kernel/cpu/built-in.a
  809. CC fs/mpage.o
  810. CC arch/x86/kernel/fpu/init.o
  811. CC arch/x86/pci/common.o
  812. CC drivers/ata/pata_oldpiix.o
  813. CC arch/x86/pci/early.o
  814. CC arch/x86/pci/bus_numa.o
  815. CC mm/page_alloc.o
  816. CC drivers/ata/pata_sch.o
  817. CC drivers/acpi/property.o
  818. CC arch/x86/pci/amd_bus.o
  819. CC drivers/acpi/acpi_cmos_rtc.o
  820. CC arch/x86/kernel/fpu/bugs.o
  821. CC drivers/acpi/x86/apple.o
  822. CC kernel/events/ring_buffer.o
  823. CC opencn/master/fsm_foe.o
  824. CC drivers/acpi/x86/utils.o
  825. AR drivers/ata/built-in.a
  826. AR arch/x86/pci/built-in.a
  827. CC drivers/acpi/debugfs.o
  828. CC arch/x86/kernel/fpu/core.o
  829. CC fs/proc_namespace.o
  830. CC drivers/acpi/acpi_lpat.o
  831. CC drivers/base/component.o
  832. CC opencn/master/fsm_master.o
  833. CC lib/lockref.o
  834. CC drivers/acpi/acpi_lpit.o
  835. CC fs/debugfs/inode.o
  836. CC lib/bcd.o
  837. CC lib/sort.o
  838. CC fs/debugfs/file.o
  839. CC lib/parser.o
  840. CC mm/init-mm.o
  841. CC lib/debug_locks.o
  842. CC net/802/p8022.o
  843. CC kernel/events/callchain.o
  844. CC drivers/base/core.o
  845. CC drivers/acpi/dptf/int340x_thermal.o
  846. CC mm/memblock.o
  847. CC lib/random32.o
  848. CC opencn/master/fsm_pdo.o
  849. CC arch/x86/kernel/fpu/regset.o
  850. CC kernel/events/hw_breakpoint.o
  851. CC lib/bust_spinlocks.o
  852. AR drivers/acpi/dptf/built-in.a
  853. CC drivers/acpi/processor_driver.o
  854. CC lib/kasprintf.o
  855. CC drivers/acpi/acpica/dsargs.o
  856. AR fs/debugfs/built-in.a
  857. CC arch/x86/kernel/fpu/signal.o
  858. CC fs/devpts/inode.o
  859. CC net/802/psnap.o
  860. CC fs/exportfs/expfs.o
  861. CC opencn/master/fsm_pdo_entry.o
  862. CC drivers/acpi/acpica/dscontrol.o
  863. CC kernel/ipipe/core.o
  864. CC lib/bitmap.o
  865. CC kernel/irq/irqdesc.o
  866. CC mm/madvise.o
  867. AR fs/devpts/built-in.a
  868. CC arch/x86/kernel/fpu/xstate.o
  869. CC kernel/ipipe/timer.o
  870. CC kernel/events/uprobes.o
  871. CC drivers/acpi/acpica/dsdebug.o
  872. CC drivers/acpi/acpica/dsfield.o
  873. CC opencn/master/fsm_sii.o
  874. CC net/802/stp.o
  875. AR fs/exportfs/built-in.a
  876. CC drivers/base/bus.o
  877. CC kernel/irq/handle.o
  878. CC fs/fat/cache.o
  879. AR kernel/ipipe/built-in.a
  880. CC drivers/base/dd.o
  881. CC fs/ext4/balloc.o
  882. CC mm/page_io.o
  883. CC lib/scatterlist.o
  884. CC drivers/acpi/acpica/dsinit.o
  885. CC fs/fat/dir.o
  886. CC drivers/acpi/acpica/dsmethod.o
  887. CC opencn/master/fsm_slave.o
  888. AR arch/x86/kernel/fpu/built-in.a
  889. CC arch/x86/kernel/kprobes/core.o
  890. CC mm/swap_state.o
  891. CC kernel/irq/manage.o
  892. CC drivers/acpi/acpica/dsmthdat.o
  893. AR kernel/events/built-in.a
  894. CC mm/swapfile.o
  895. AR net/802/built-in.a
  896. CC fs/fat/fatent.o
  897. CC drivers/base/syscore.o
  898. CC lib/list_sort.o
  899. CC net/bridge/br.o
  900. CC drivers/acpi/acpica/dsobject.o
  901. CC lib/uuid.o
  902. CC opencn/master/fsm_slave_config.o
  903. CC arch/x86/kernel/kprobes/opt.o
  904. CC fs/ext4/bitmap.o
  905. CC lib/iov_iter.o
  906. CC fs/fat/file.o
  907. CC drivers/acpi/acpica/dsopcode.o
  908. CC fs/fat/inode.o
  909. AR arch/x86/kernel/kprobes/built-in.a
  910. CC arch/x86/kernel/ptrace.o
  911. CC net/bridge/br_device.o
  912. CC drivers/acpi/acpica/dspkginit.o
  913. CC drivers/base/driver.o
  914. CC kernel/irq/spurious.o
  915. CC fs/ext4/block_validity.o
  916. CC drivers/acpi/acpica/dsutils.o
  917. CC opencn/master/fsm_slave_scan.o
  918. CC kernel/irq/resend.o
  919. CC fs/fat/misc.o
  920. CC drivers/acpi/acpica/dswexec.o
  921. CC drivers/base/class.o
  922. CC fs/ext4/dir.o
  923. CC arch/x86/kernel/step.o
  924. CC fs/ext4/ext4_jbd2.o
  925. CC drivers/acpi/acpica/dswload.o
  926. CC kernel/irq/chip.o
  927. CC mm/swap_slots.o
  928. CC arch/x86/kernel/i8237.o
  929. CC drivers/acpi/acpica/dswload2.o
  930. CC arch/x86/kernel/stacktrace.o
  931. CC opencn/master/fsm_soe.o
  932. CC net/bridge/br_fdb.o
  933. CC opencn/master/mailbox.o
  934. CC fs/fat/nfs.o
  935. CC mm/dmapool.o
  936. CC drivers/base/platform.o
  937. CC opencn/master/master.o
  938. CC drivers/acpi/acpica/dswscope.o
  939. CC lib/clz_ctz.o
  940. CC arch/x86/kernel/reboot.o
  941. CC fs/ext4/extents.o
  942. CC lib/bsearch.o
  943. CC fs/fat/namei_vfat.o
  944. CC drivers/acpi/acpica/dswstate.o
  945. CC fs/ext4/extents_status.o
  946. CC fs/fat/namei_msdos.o
  947. CC kernel/irq/dummychip.o
  948. CC mm/hugetlb.o
  949. CC drivers/acpi/acpica/evevent.o
  950. CC lib/find_bit.o
  951. CC kernel/irq/devres.o
  952. CC drivers/acpi/acpica/evgpe.o
  953. CC drivers/base/cpu.o
  954. CC lib/llist.o
  955. AR fs/fat/built-in.a
  956. CC arch/x86/kernel/msr.o
  957. CC drivers/base/firmware.o
  958. CC kernel/irq/autoprobe.o
  959. CC lib/memweight.o
  960. CC lib/kfifo.o
  961. CC drivers/acpi/acpica/evgpeblk.o
  962. CC arch/x86/kernel/cpuid.o
  963. CC kernel/irq/irqdomain.o
  964. CC arch/x86/kernel/early-quirks.o
  965. CC net/bridge/br_forward.o
  966. CC drivers/acpi/acpica/evgpeinit.o
  967. CC opencn/master/pdo.o
  968. CC drivers/acpi/acpica/evgpeutil.o
  969. CC drivers/base/init.o
  970. CC drivers/base/map.o
  971. CC arch/x86/kernel/smp.o
  972. CC drivers/acpi/acpica/evglock.o
  973. CC opencn/master/pdo_entry.o
  974. CC lib/percpu-refcount.o
  975. CC fs/hugetlbfs/inode.o
  976. CC drivers/base/devres.o
  977. CC opencn/master/pdo_list.o
  978. CC drivers/acpi/acpica/evhandler.o
  979. CC opencn/master/reg_request.o
  980. CC arch/x86/kernel/smpboot.o
  981. CC lib/rhashtable.o
  982. CC kernel/irq/proc.o
  983. CC drivers/acpi/acpica/evmisc.o
  984. CC lib/once.o
  985. CC fs/ext4/file.o
  986. CC drivers/base/attribute_container.o
  987. CC kernel/locking/mutex.o
  988. CC net/bridge/br_if.o
  989. CC mm/sparse.o
  990. CC opencn/master/sdo.o
  991. AR fs/hugetlbfs/built-in.a
  992. CC drivers/acpi/acpica/evregion.o
  993. CC drivers/base/transport_class.o
  994. CC kernel/irq/migration.o
  995. CC lib/refcount.o
  996. CC drivers/acpi/acpica/evrgnini.o
  997. CC fs/ext4/fsmap.o
  998. CC drivers/base/topology.o
  999. CC kernel/irq/cpuhotplug.o
  1000. CC lib/usercopy.o
  1001. CC opencn/master/sdo_entry.o
  1002. CC lib/errseq.o
  1003. CC kernel/locking/semaphore.o
  1004. CC lib/bucket_locks.o
  1005. CC kernel/locking/rwsem.o
  1006. CC drivers/acpi/acpica/evsci.o
  1007. CC opencn/master/sdo_request.o
  1008. CC mm/sparse-vmemmap.o
  1009. CC kernel/irq/msi.o
  1010. CC drivers/base/container.o
  1011. CC opencn/master/slave.o
  1012. CC drivers/acpi/acpica/evxface.o
  1013. CC arch/x86/kernel/tsc_sync.o
  1014. CC lib/generic-radix-tree.o
  1015. CC drivers/base/property.o
  1016. CC kernel/locking/percpu-rwsem.o
  1017. CC mm/slub.o
  1018. CC arch/x86/kernel/setup_percpu.o
  1019. CC kernel/locking/spinlock.o
  1020. CC opencn/master/slave_config.o
  1021. CC fs/ext4/fsync.o
  1022. CC kernel/irq/affinity.o
  1023. CC net/bridge/br_input.o
  1024. CC drivers/acpi/acpica/evxfevnt.o
  1025. CC kernel/locking/osq_lock.o
  1026. CC kernel/locking/qspinlock.o
  1027. CC arch/x86/kernel/mpparse.o
  1028. CC net/bridge/br_ioctl.o
  1029. CC kernel/irq/matrix.o
  1030. CC arch/x86/kernel/trace_clock.o
  1031. CC kernel/locking/rtmutex.o
  1032. CC lib/string_helpers.o
  1033. CC drivers/acpi/acpica/evxfgpe.o
  1034. CC drivers/acpi/acpica/evxfregn.o
  1035. CC fs/ext4/hash.o
  1036. CC arch/x86/kernel/machine_kexec_64.o
  1037. CC drivers/base/cacheinfo.o
  1038. CC drivers/acpi/acpica/exconcat.o
  1039. CC drivers/acpi/acpica/exconfig.o
  1040. AR kernel/irq/built-in.a
  1041. CC net/bridge/br_stp.o
  1042. CC kernel/power/qos.o
  1043. CC lib/hexdump.o
  1044. CC kernel/locking/spinlock_debug.o
  1045. CC opencn/master/soe_errors.o
  1046. CC fs/ext4/ialloc.o
  1047. CC kernel/printk/printk.o
  1048. CC opencn/master/soe_request.o
  1049. AS arch/x86/kernel/relocate_kernel_64.o
  1050. CC lib/kstrtox.o
  1051. CC arch/x86/kernel/crash.o
  1052. CC drivers/acpi/acpica/exconvrt.o
  1053. CC drivers/base/devcon.o
  1054. CC net/bridge/br_stp_bpdu.o
  1055. CC opencn/master/sync.o
  1056. CC drivers/acpi/acpica/excreate.o
  1057. CC drivers/base/swnode.o
  1058. CC lib/crypto/aes.o
  1059. CC kernel/locking/qrwlock.o
  1060. CC net/bridge/br_stp_if.o
  1061. CC drivers/acpi/acpica/exdebug.o
  1062. CC mm/early_ioremap.o
  1063. CC arch/x86/kernel/crash_dump_64.o
  1064. CC kernel/power/poweroff.o
  1065. CC opencn/master/sync_config.o
  1066. CC net/bridge/br_stp_timer.o
  1067. AR kernel/locking/built-in.a
  1068. CC opencn/master/voe_handler.o
  1069. AR kernel/power/built-in.a
  1070. CC net/bridge/br_netlink.o
  1071. CC drivers/acpi/acpica/exdump.o
  1072. CC lib/crypto/arc4.o
  1073. CC lib/fonts/fonts.o
  1074. CC mm/memfd.o
  1075. CC drivers/base/devtmpfs.o
  1076. CC arch/x86/kernel/module.o
  1077. CC fs/ext4/indirect.o
  1078. CC drivers/acpi/acpica/exfield.o
  1079. CC net/bridge/br_netlink_tunnel.o
  1080. CC lib/fonts/font_8x8.o
  1081. CC lib/crypto/des.o
  1082. CC lib/fonts/font_8x16.o
  1083. CC kernel/printk/printk_safe.o
  1084. CC drivers/acpi/acpica/exfldio.o
  1085. CC drivers/acpi/acpica/exmisc.o
  1086. CC arch/x86/kernel/doublefault.o
  1087. AR kernel/printk/built-in.a
  1088. AR mm/built-in.a
  1089. CC drivers/base/firmware_loader/main.o
  1090. CC kernel/rcu/update.o
  1091. CC drivers/base/power/clock_ops.o
  1092. AR lib/fonts/built-in.a
  1093. CC kernel/rcu/sync.o
  1094. CC net/bridge/br_arp_nd_proxy.o
  1095. CC drivers/acpi/acpica/exmutex.o
  1096. CC opencn/master/module.o
  1097. CC net/bridge/br_sysfs_if.o
  1098. CC arch/x86/kernel/early_printk.o
  1099. CC arch/x86/kernel/hpet.o
  1100. CC net/bridge/br_sysfs_br.o
  1101. CC lib/crypto/sha256.o
  1102. CC drivers/acpi/acpica/exnames.o
  1103. AR drivers/base/power/built-in.a
  1104. CC fs/ext4/inline.o
  1105. CC kernel/rcu/srcutree.o
  1106. CC drivers/acpi/acpica/exoparg1.o
  1107. CC drivers/base/module.o
  1108. AR drivers/base/firmware_loader/built-in.a
  1109. CC drivers/base/platform-msi.o
  1110. CC arch/x86/kernel/amd_nb.o
  1111. CC net/bridge/br_nf_core.o
  1112. CC arch/x86/kernel/pcspeaker.o
  1113. CC net/bridge/br_multicast.o
  1114. AR lib/crypto/built-in.a
  1115. CC kernel/rcu/tree.o
  1116. CC drivers/acpi/acpica/exoparg2.o
  1117. CC lib/lz4/lz4_decompress.o
  1118. CC opencn/master/cdev.o
  1119. CC arch/x86/kernel/check.o
  1120. CC drivers/block/loop.o
  1121. CC arch/x86/kernel/pci-swiotlb.o
  1122. AR drivers/base/built-in.a
  1123. CC drivers/acpi/acpica/exoparg3.o
  1124. CC drivers/cdrom/cdrom.o
  1125. CC arch/x86/kernel/uprobes.o
  1126. CC fs/ext4/inode.o
  1127. CC net/bridge/br_mdb.o
  1128. CC fs/ext4/ioctl.o
  1129. CC kernel/sched/core.o
  1130. CC drivers/acpi/acpica/exoparg6.o
  1131. CC opencn/master/ioctl.o
  1132. CC drivers/acpi/acpica/exprep.o
  1133. CC arch/x86/kernel/sysfb.o
  1134. AR lib/lz4/built-in.a
  1135. CC lib/lzo/lzo1x_decompress_safe.o
  1136. CC drivers/acpi/acpica/exregion.o
  1137. AR opencn/master/built-in.a
  1138. AR opencn/built-in.a
  1139. CC net/bridge/br_netfilter_hooks.o
  1140. CC arch/x86/kernel/perf_regs.o
  1141. CC arch/x86/lib/msr-smp.o
  1142. AR drivers/block/built-in.a
  1143. CC arch/x86/lib/cache-smp.o
  1144. AR lib/lzo/built-in.a
  1145. CC lib/math/div64.o
  1146. CC drivers/acpi/acpica/exresnte.o
  1147. CC arch/x86/lib/msr.o
  1148. CC lib/math/gcd.o
  1149. CC fs/ext4/mballoc.o
  1150. AR drivers/cdrom/built-in.a
  1151. CC drivers/char/mem.o
  1152. CC fs/ext4/migrate.o
  1153. CC drivers/acpi/acpica/exresolv.o
  1154. CC arch/x86/kernel/tracepoint.o
  1155. CC lib/math/lcm.o
  1156. CC drivers/char/random.o
  1157. CC kernel/rcu/rcu_segcblist.o
  1158. CC lib/math/int_pow.o
  1159. CC lib/math/int_sqrt.o
  1160. CC drivers/acpi/acpica/exresop.o
  1161. CC arch/x86/kernel/umip.o
  1162. CC lib/math/reciprocal_div.o
  1163. AR kernel/rcu/built-in.a
  1164. CC net/bridge/br_netfilter_ipv6.o
  1165. CC lib/math/rational.o
  1166. AS arch/x86/lib/msr-reg.o
  1167. CC arch/x86/lib/msr-reg-export.o
  1168. CC fs/ext4/mmp.o
  1169. AR lib/math/built-in.a
  1170. CC drivers/acpi/acpica/exserial.o
  1171. CC lib/mpi/generic_mpih-lshift.o
  1172. CC lib/xz/xz_dec_syms.o
  1173. CC arch/x86/kernel/unwind_frame.o
  1174. CC lib/mpi/generic_mpih-mul1.o
  1175. AS arch/x86/lib/hweight.o
  1176. CC drivers/acpi/acpica/exstore.o
  1177. CC arch/x86/kernel/vsmp_64.o
  1178. CC lib/xz/xz_dec_stream.o
  1179. CC arch/x86/lib/iomem.o
  1180. CC lib/mpi/generic_mpih-mul2.o
  1181. CC lib/zlib_inflate/inffast.o
  1182. CC drivers/acpi/acpica/exstoren.o
  1183. CC kernel/time/time.o
  1184. CC lib/zlib_inflate/inflate.o
  1185. CC lib/xz/xz_dec_lzma2.o
  1186. CC arch/x86/kernel/ipipe.o
  1187. CC lib/mpi/generic_mpih-mul3.o
  1188. AS arch/x86/lib/iomap_copy_64.o
  1189. CC net/bridge/netfilter/ebtables.o
  1190. AS arch/x86/lib/clear_page_64.o
  1191. CC fs/ext4/move_extent.o
  1192. CC drivers/acpi/acpica/exstorob.o
  1193. CC kernel/sched/loadavg.o
  1194. CC arch/x86/lib/cmdline.o
  1195. CC lib/mpi/generic_mpih-rshift.o
  1196. CC lib/zlib_inflate/infutil.o
  1197. CC lib/xz/xz_dec_bcj.o
  1198. CC drivers/acpi/acpica/exsystem.o
  1199. AS arch/x86/lib/cmpxchg16b_emu.o
  1200. CC drivers/char/ttyprintk.o
  1201. AS arch/x86/lib/copy_page_64.o
  1202. CC lib/zlib_inflate/inftrees.o
  1203. CC lib/mpi/generic_mpih-sub1.o
  1204. AS arch/x86/lib/copy_user_64.o
  1205. AR lib/xz/built-in.a
  1206. CC arch/x86/lib/cpu.o
  1207. CC kernel/time/timer.o
  1208. CC drivers/acpi/acpica/extrace.o
  1209. CC kernel/time/hrtimer.o
  1210. AS arch/x86/kernel/head_64.o
  1211. CC lib/zlib_inflate/inflate_syms.o
  1212. CC drivers/char/misc.o
  1213. AS arch/x86/lib/csum-copy_64.o
  1214. CC arch/x86/kernel/head64.o
  1215. CC kernel/sched/clock.o
  1216. CC fs/ext4/namei.o
  1217. CC drivers/acpi/acpica/exutils.o
  1218. CC lib/mpi/generic_mpih-add1.o
  1219. AR lib/zlib_inflate/built-in.a
  1220. CC arch/x86/lib/csum-partial_64.o
  1221. CC lib/iomap.o
  1222. CC net/bridge/netfilter/ebtable_broute.o
  1223. CC drivers/acpi/acpica/hwacpi.o
  1224. CC drivers/char/nvram.o
  1225. CC lib/mpi/mpicoder.o
  1226. CC arch/x86/kernel/ebda.o
  1227. CC arch/x86/lib/csum-wrappers_64.o
  1228. CC drivers/acpi/acpica/hwesleep.o
  1229. CC arch/x86/kernel/platform-quirks.o
  1230. CC kernel/sched/cputime.o
  1231. LDS arch/x86/kernel/vmlinux.lds
  1232. AR arch/x86/kernel/built-in.a
  1233. AR arch/x86/built-in.a
  1234. CC lib/pci_iomap.o
  1235. CC arch/x86/lib/delay.o
  1236. CC drivers/acpi/acpica/hwgpe.o
  1237. CC net/bridge/netfilter/ebtable_filter.o
  1238. CC drivers/char/agp/backend.o
  1239. CC lib/iomap_copy.o
  1240. CC drivers/acpi/processor_idle.o
  1241. CC kernel/sched/idle.o
  1242. CC lib/mpi/mpi-bit.o
  1243. CC arch/x86/lib/error-inject.o
  1244. CC drivers/acpi/acpica/hwregs.o
  1245. CC kernel/time/timekeeping.o
  1246. CC kernel/trace/trace_clock.o
  1247. AS arch/x86/lib/getuser.o
  1248. CC net/bridge/netfilter/ebtable_nat.o
  1249. CC drivers/acpi/acpica/hwsleep.o
  1250. CC kernel/trace/ring_buffer.o
  1251. CC arch/x86/lib/inat.o
  1252. CC drivers/char/agp/frontend.o
  1253. CC kernel/time/ntp.o
  1254. CC lib/mpi/mpi-cmp.o
  1255. CC net/bridge/netfilter/ebt_802_3.o
  1256. CC arch/x86/lib/insn-eval.o
  1257. CC fs/ext4/page-io.o
  1258. CC drivers/acpi/acpica/hwvalid.o
  1259. CC drivers/acpi/acpica/hwxface.o
  1260. CC kernel/time/clocksource.o
  1261. CC lib/mpi/mpih-cmp.o
  1262. CC lib/mpi/mpih-div.o
  1263. CC arch/x86/lib/insn.o
  1264. CC drivers/char/agp/generic.o
  1265. AS arch/x86/lib/memcpy_64.o
  1266. CC kernel/sched/fair.o
  1267. CC net/bridge/netfilter/ebt_among.o
  1268. CC net/bridge/netfilter/ebt_arp.o
  1269. CC kernel/trace/trace.o
  1270. CC fs/ext4/readpage.o
  1271. CC drivers/acpi/acpica/hwxfsleep.o
  1272. AS arch/x86/lib/memmove_64.o
  1273. CC drivers/acpi/acpica/hwpci.o
  1274. CC lib/mpi/mpih-mul.o
  1275. AS arch/x86/lib/memset_64.o
  1276. CC kernel/time/jiffies.o
  1277. CC drivers/acpi/acpica/nsaccess.o
  1278. CC arch/x86/lib/misc.o
  1279. AS arch/x86/lib/putuser.o
  1280. CC kernel/time/timer_list.o
  1281. CC fs/ext4/resize.o
  1282. CC net/bridge/netfilter/ebt_ip.o
  1283. CC fs/ext4/super.o
  1284. AS arch/x86/lib/retpoline.o
  1285. CC lib/mpi/mpi-pow.o
  1286. CC drivers/acpi/acpica/nsalloc.o
  1287. CC drivers/char/agp/isoch.o
  1288. CC kernel/time/timeconv.o
  1289. CC kernel/trace/trace_output.o
  1290. CC arch/x86/lib/usercopy.o
  1291. CC arch/x86/lib/usercopy_64.o
  1292. CC drivers/acpi/acpica/nsarguments.o
  1293. CC kernel/time/timecounter.o
  1294. CC drivers/char/agp/amd64-agp.o
  1295. CC lib/mpi/mpiutil.o
  1296. CC kernel/time/alarmtimer.o
  1297. CC drivers/acpi/acpica/nsconvert.o
  1298. CC net/bridge/netfilter/ebt_ip6.o
  1299. CC net/bridge/netfilter/ebt_limit.o
  1300. AR arch/x86/lib/lib.a
  1301. EXPORTS arch/x86/lib/lib-ksyms.o
  1302. CC fs/ext4/symlink.o
  1303. CC drivers/acpi/acpica/nsdump.o
  1304. AR arch/x86/lib/built-in.a
  1305. CC fs/ext4/sysfs.o
  1306. CC drivers/char/agp/intel-agp.o
  1307. AR lib/mpi/built-in.a
  1308. CC lib/devres.o
  1309. CC drivers/acpi/acpica/nseval.o
  1310. CC drivers/acpi/acpica/nsinit.o
  1311. CC drivers/char/agp/intel-gtt.o
  1312. CC drivers/acpi/acpica/nsload.o
  1313. CC fs/ext4/xattr.o
  1314. CC net/bridge/netfilter/ebt_mark_m.o
  1315. CC kernel/time/posix-timers.o
  1316. CC drivers/acpi/acpica/nsnames.o
  1317. CC net/core/sock.o
  1318. CC net/core/request_sock.o
  1319. CC kernel/sched/rt.o
  1320. CC lib/check_signature.o
  1321. CC lib/logic_pio.o
  1322. CC kernel/trace/trace_seq.o
  1323. CC drivers/acpi/acpica/nsobject.o
  1324. CC net/core/skbuff.o
  1325. CC net/bridge/netfilter/ebt_pkttype.o
  1326. CC drivers/acpi/acpica/nsparse.o
  1327. CC lib/assoc_array.o
  1328. CC kernel/time/posix-cpu-timers.o
  1329. CC kernel/trace/trace_stat.o
  1330. CC net/bridge/netfilter/ebt_stp.o
  1331. AR drivers/char/agp/built-in.a
  1332. CC drivers/acpi/acpica/nspredef.o
  1333. AR drivers/char/built-in.a
  1334. CC drivers/acpi/processor_throttling.o
  1335. CC drivers/acpi/acpica/nsprepkg.o
  1336. CC lib/bitrev.o
  1337. CC kernel/sched/deadline.o
  1338. CC lib/crc-ccitt.o
  1339. CC drivers/acpi/acpica/nsrepair.o
  1340. CC kernel/time/posix-clock.o
  1341. CC kernel/trace/trace_printk.o
  1342. CC drivers/acpi/acpica/nsrepair2.o
  1343. CC drivers/acpi/processor_thermal.o
  1344. CC lib/crc16.o
  1345. CC drivers/acpi/acpica/nssearch.o
  1346. CC net/bridge/netfilter/ebt_vlan.o
  1347. CC lib/crc-t10dif.o
  1348. HOSTCC lib/gen_crc32table
  1349. CC drivers/acpi/acpica/nsutils.o
  1350. CC kernel/sched/wait.o
  1351. CC kernel/sched/wait_bit.o
  1352. CC drivers/acpi/container.o
  1353. CC kernel/time/itimer.o
  1354. CC kernel/trace/trace_sched_switch.o
  1355. CC drivers/acpi/acpica/nswalk.o
  1356. CC net/bridge/netfilter/ebt_arpreply.o
  1357. CC net/bridge/netfilter/ebt_mark.o
  1358. CC lib/genalloc.o
  1359. CC drivers/acpi/acpi_memhotplug.o
  1360. CC drivers/acpi/acpica/nsxfeval.o
  1361. CC kernel/sched/swait.o
  1362. CC kernel/time/clockevents.o
  1363. CC kernel/trace/trace_nop.o
  1364. CC drivers/acpi/acpica/nsxfname.o
  1365. CC net/bridge/netfilter/ebt_dnat.o
  1366. CC lib/percpu_counter.o
  1367. CC fs/ext4/xattr_trusted.o
  1368. CC net/core/datagram.o
  1369. CC fs/ext4/xattr_user.o
  1370. CC kernel/sched/completion.o
  1371. CC drivers/acpi/acpica/nsxfobj.o
  1372. CC kernel/trace/blktrace.o
  1373. CC drivers/acpi/acpica/psargs.o
  1374. CC kernel/time/tick-common.o
  1375. CC lib/error-inject.o
  1376. CC fs/ext4/acl.o
  1377. CC drivers/acpi/acpica/psloop.o
  1378. CC lib/syscall.o
  1379. CC lib/nlattr.o
  1380. CC net/bridge/netfilter/ebt_redirect.o
  1381. CC net/bridge/netfilter/ebt_snat.o
  1382. CC drivers/acpi/acpica/psobject.o
  1383. CC lib/cpu_rmap.o
  1384. CC lib/dynamic_queue_limits.o
  1385. CC kernel/trace/trace_events.o
  1386. CC fs/ext4/xattr_security.o
  1387. CC lib/glob.o
  1388. CC drivers/acpi/acpica/psopcode.o
  1389. CC kernel/time/tick-broadcast.o
  1390. CC kernel/time/tick-broadcast-hrtimer.o
  1391. CC kernel/sched/cpupri.o
  1392. CC net/core/stream.o
  1393. CC drivers/acpi/acpica/psopinfo.o
  1394. CC net/bridge/netfilter/ebt_log.o
  1395. AR fs/ext4/built-in.a
  1396. CC net/bridge/netfilter/ebt_nflog.o
  1397. CC kernel/trace/trace_export.o
  1398. CC lib/strncpy_from_user.o
  1399. CC fs/iomap/apply.o
  1400. CC lib/strnlen_user.o
  1401. CC kernel/time/tick-oneshot.o
  1402. CC drivers/acpi/acpica/psparse.o
  1403. CC kernel/time/tick-sched.o
  1404. CC fs/iomap/buffered-io.o
  1405. CC kernel/time/vsyscall.o
  1406. CC drivers/acpi/acpica/psscope.o
  1407. CC kernel/time/timekeeping_debug.o
  1408. CC kernel/sched/cpudeadline.o
  1409. CC net/ethernet/eth.o
  1410. CC lib/net_utils.o
  1411. AR net/bridge/netfilter/built-in.a
  1412. CC lib/sg_pool.o
  1413. AR net/bridge/built-in.a
  1414. CC lib/asn1_decoder.o
  1415. CC drivers/acpi/acpica/pstree.o
  1416. CC drivers/acpi/acpica/psutils.o
  1417. CC net/ipv4/route.o
  1418. CC net/core/scm.o
  1419. CC kernel/sched/topology.o
  1420. CC kernel/trace/trace_event_perf.o
  1421. CC lib/oid_registry.o
  1422. CC drivers/acpi/acpica/pswalk.o
  1423. CC kernel/sched/stop_task.o
  1424. CC lib/sbitmap.o
  1425. AR kernel/time/built-in.a
  1426. CC lib/argv_split.o
  1427. CC kernel/xenomai/arith.o
  1428. CC drivers/acpi/acpica/psxface.o
  1429. CC drivers/acpi/acpica/rsaddr.o
  1430. CC fs/iomap/direct-io.o
  1431. CC lib/bug.o
  1432. CC drivers/acpi/acpica/rscalc.o
  1433. CC kernel/xenomai/clock.o
  1434. CC drivers/acpi/acpica/rscreate.o
  1435. CC kernel/trace/trace_events_filter.o
  1436. CC kernel/sched/pelt.o
  1437. AR net/ethernet/built-in.a
  1438. CC lib/chacha.o
  1439. CC fs/iomap/fiemap.o
  1440. CC lib/clz_tab.o
  1441. CC lib/cmdline.o
  1442. CC drivers/acpi/acpica/rsdumpinfo.o
  1443. CC lib/cpumask.o
  1444. CC net/ipv6/af_inet6.o
  1445. CC net/core/gen_stats.o
  1446. CC drivers/acpi/acpica/rsinfo.o
  1447. CC net/ipv6/anycast.o
  1448. CC drivers/acpi/acpica/rsio.o
  1449. CC fs/iomap/seek.o
  1450. CC lib/ctype.o
  1451. CC fs/iomap/swapfile.o
  1452. CC kernel/xenomai/heap.o
  1453. CC fs/jbd2/transaction.o
  1454. CC drivers/acpi/acpica/rsirq.o
  1455. CC lib/dec_and_lock.o
  1456. CC kernel/sched/stats.o
  1457. CC drivers/acpi/acpica/rslist.o
  1458. CC lib/decompress.o
  1459. CC kernel/trace/trace_events_trigger.o
  1460. CC lib/decompress_bunzip2.o
  1461. CC net/ipv4/inetpeer.o
  1462. CC kernel/sched/membarrier.o
  1463. CC kernel/xenomai/init.o
  1464. CC net/core/gen_estimator.o
  1465. CC kernel/sched/isolation.o
  1466. CC drivers/acpi/acpica/rsmemory.o
  1467. CC drivers/acpi/acpica/rsmisc.o
  1468. AR fs/iomap/built-in.a
  1469. CC fs/kernfs/mount.o
  1470. CC lib/decompress_inflate.o
  1471. CC lib/decompress_unlz4.o
  1472. CC net/ipv6/ip6_output.o
  1473. CC drivers/acpi/acpica/rsserial.o
  1474. CC lib/decompress_unlzma.o
  1475. CC lib/decompress_unlzo.o
  1476. CC fs/kernfs/inode.o
  1477. CC net/ipv4/protocol.o
  1478. CC kernel/xenomai/intr.o
  1479. CC drivers/acpi/acpica/rsutils.o
  1480. CC fs/jbd2/commit.o
  1481. CC kernel/trace/trace_kprobe.o
  1482. CC net/ipv4/ip_input.o
  1483. CC lib/decompress_unxz.o
  1484. AR kernel/sched/built-in.a
  1485. CC kernel/profile.o
  1486. CC net/core/net_namespace.o
  1487. CC net/ipv4/ip_fragment.o
  1488. CC drivers/acpi/acpica/rsxface.o
  1489. CC fs/kernfs/dir.o
  1490. CC lib/dump_stack.o
  1491. CC drivers/acpi/acpica/tbdata.o
  1492. CC kernel/xenomai/lock.o
  1493. CC kernel/stacktrace.o
  1494. CC fs/jbd2/recovery.o
  1495. CC kernel/futex.o
  1496. CC kernel/trace/power-traces.o
  1497. CC net/ipv4/ip_forward.o
  1498. CC lib/earlycpio.o
  1499. CC fs/kernfs/file.o
  1500. CC kernel/xenomai/sched-idle.o
  1501. CC lib/extable.o
  1502. CC drivers/acpi/acpica/tbfadt.o
  1503. CC kernel/dma.o
  1504. CC net/core/secure_seq.o
  1505. CC fs/jbd2/checkpoint.o
  1506. CC lib/flex_proportions.o
  1507. CC fs/nls/nls_base.o
  1508. CC drivers/acpi/acpica/tbfind.o
  1509. CC kernel/xenomai/registry.o
  1510. CC net/ipv6/ip6_input.o
  1511. CC lib/idr.o
  1512. CC net/ipv4/ip_options.o
  1513. CC fs/kernfs/symlink.o
  1514. CC drivers/acpi/acpica/tbinstal.o
  1515. CC fs/jbd2/revoke.o
  1516. CC fs/nls/nls_cp437.o
  1517. CC fs/jbd2/journal.o
  1518. CC net/ipv4/ip_output.o
  1519. CC drivers/acpi/acpica/tbprint.o
  1520. AR fs/kernfs/built-in.a
  1521. CC net/ipv4/ip_sockglue.o
  1522. CC fs/nls/nls_ascii.o
  1523. CC kernel/trace/trace_dynevent.o
  1524. CC lib/ioremap.o
  1525. CC kernel/xenomai/sched-rt.o
  1526. CC drivers/acpi/acpica/tbutils.o
  1527. CC kernel/trace/trace_probe.o
  1528. CC fs/nls/nls_iso8859-1.o
  1529. CC lib/irq_regs.o
  1530. CC net/core/flow_dissector.o
  1531. CC fs/nls/nls_utf8.o
  1532. CC drivers/acpi/acpica/tbxface.o
  1533. CC lib/is_single_threaded.o
  1534. CC fs/notify/fsnotify.o
  1535. AR fs/nls/built-in.a
  1536. CC kernel/xenomai/sched.o
  1537. CC lib/klist.o
  1538. CC drivers/acpi/acpica/tbxfload.o
  1539. CC net/ipv4/inet_hashtables.o
  1540. CC fs/proc/task_mmu.o
  1541. CC net/ipv6/addrconf.o
  1542. CC kernel/trace/trace_uprobe.o
  1543. CC lib/kobject.o
  1544. CC fs/notify/notification.o
  1545. CC drivers/acpi/acpica/tbxfroot.o
  1546. CC net/ipv4/inet_timewait_sock.o
  1547. AR fs/jbd2/built-in.a
  1548. CC drivers/acpi/acpica/utaddress.o
  1549. CC fs/proc/inode.o
  1550. CC lib/kobject_uevent.o
  1551. CC net/ipv4/inet_connection_sock.o
  1552. CC drivers/acpi/acpica/utalloc.o
  1553. AR kernel/trace/built-in.a
  1554. CC fs/notify/group.o
  1555. CC kernel/smp.o
  1556. CC fs/notify/mark.o
  1557. CC net/core/sysctl_net_core.o
  1558. CC drivers/acpi/acpica/utascii.o
  1559. CC fs/proc/root.o
  1560. CC drivers/acpi/acpica/utbuffer.o
  1561. CC kernel/xenomai/select.o
  1562. CC fs/notify/fdinfo.o
  1563. CC fs/proc/base.o
  1564. CC kernel/module.o
  1565. CC net/ipv4/tcp.o
  1566. CC drivers/acpi/acpica/utcopy.o
  1567. CC fs/proc/generic.o
  1568. CC fs/notify/dnotify/dnotify.o
  1569. CC net/llc/llc_core.o
  1570. CC lib/memcat_p.o
  1571. CC drivers/acpi/acpica/utexcep.o
  1572. CC kernel/xenomai/synch.o
  1573. AR fs/notify/dnotify/built-in.a
  1574. CC net/core/dev.o
  1575. CC fs/notify/inotify/inotify_fsnotify.o
  1576. CC lib/nmi_backtrace.o
  1577. CC lib/nodemask.o
  1578. CC drivers/acpi/acpica/utdebug.o
  1579. CC fs/proc/array.o
  1580. CC fs/proc/fd.o
  1581. CC fs/notify/inotify/inotify_user.o
  1582. CC net/ipv6/addrlabel.o
  1583. CC lib/plist.o
  1584. CC drivers/acpi/acpica/utdecode.o
  1585. CC net/llc/llc_input.o
  1586. CC lib/radix-tree.o
  1587. CC lib/ratelimit.o
  1588. CC fs/proc/proc_tty.o
  1589. CC drivers/acpi/acpica/utdelete.o
  1590. CC lib/rbtree.o
  1591. CC fs/ramfs/inode.o
  1592. AR fs/notify/inotify/built-in.a
  1593. AR fs/notify/built-in.a
  1594. CC net/ipv6/route.o
  1595. CC fs/proc/cmdline.o
  1596. CC kernel/xenomai/thread.o
  1597. CC drivers/acpi/acpica/uterror.o
  1598. CC drivers/acpi/acpica/uteval.o
  1599. CC drivers/acpi/acpica/utglobal.o
  1600. CC fs/ramfs/file-mmu.o
  1601. CC lib/seq_buf.o
  1602. CC fs/proc/consoles.o
  1603. CC kernel/kallsyms.o
  1604. CC net/llc/llc_output.o
  1605. CC kernel/acct.o
  1606. CC drivers/acpi/acpica/uthex.o
  1607. AR fs/ramfs/built-in.a
  1608. CC fs/sysfs/file.o
  1609. CC lib/sha1.o
  1610. CC drivers/acpi/acpica/utids.o
  1611. CC drivers/acpi/acpica/utinit.o
  1612. CC fs/proc/cpuinfo.o
  1613. CC net/ipv4/tcp_input.o
  1614. CC lib/show_mem.o
  1615. CC fs/proc/devices.o
  1616. CC drivers/acpi/acpica/utlock.o
  1617. CC fs/proc/interrupts.o
  1618. CC kernel/crash_core.o
  1619. AR net/llc/built-in.a
  1620. CC kernel/xenomai/timer.o
  1621. CC drivers/acpi/acpica/utmath.o
  1622. CC fs/sysfs/dir.o
  1623. CC fs/proc/loadavg.o
  1624. CC lib/siphash.o
  1625. CC net/netfilter/core.o
  1626. CC fs/proc/meminfo.o
  1627. CC fs/tracefs/inode.o
  1628. CC drivers/acpi/acpica/utmisc.o
  1629. CC fs/proc/stat.o
  1630. CC kernel/kexec_core.o
  1631. CC fs/sysfs/symlink.o
  1632. CC lib/string.o
  1633. CC drivers/acpi/acpica/utmutex.o
  1634. AR fs/tracefs/built-in.a
  1635. CC drivers/acpi/acpica/utnonansi.o
  1636. CC fs/proc/uptime.o
  1637. CC fs/proc/util.o
  1638. CC drivers/acpi/acpica/utobject.o
  1639. CC drivers/acpi/acpica/utosi.o
  1640. CC fs/proc/version.o
  1641. CC kernel/xenomai/tree.o
  1642. CC lib/timerqueue.o
  1643. CC fs/sysfs/mount.o
  1644. CC fs/eventpoll.o
  1645. CC kernel/xenomai/rtdm/core.o
  1646. CC kernel/xenomai/rtdm/drvlib.o
  1647. CC drivers/acpi/acpica/utownerid.o
  1648. CC fs/proc/softirqs.o
  1649. CC lib/vsprintf.o
  1650. CC net/netfilter/nf_log.o
  1651. CC fs/proc/namespaces.o
  1652. CC drivers/acpi/acpica/utpredef.o
  1653. CC fs/sysfs/group.o
  1654. CC net/netlink/af_netlink.o
  1655. CC drivers/acpi/acpica/utresdecode.o
  1656. CC lib/win_minmax.o
  1657. CC net/ipv6/ip6_fib.o
  1658. CC fs/proc/self.o
  1659. AR fs/sysfs/built-in.a
  1660. CC fs/anon_inodes.o
  1661. CC drivers/acpi/acpica/utresrc.o
  1662. CC drivers/acpi/acpica/utstate.o
  1663. CC lib/xarray.o
  1664. CC kernel/xenomai/rtdm/wrappers.o
  1665. CC fs/proc/thread_self.o
  1666. CC fs/proc/proc_sysctl.o
  1667. CC net/core/ethtool.o
  1668. CC net/core/dev_addr_lists.o
  1669. CC drivers/acpi/acpica/utstring.o
  1670. CC fs/proc/proc_net.o
  1671. AR kernel/xenomai/rtdm/built-in.a
  1672. CC net/netfilter/nf_queue.o
  1673. AR kernel/xenomai/built-in.a
  1674. CC kernel/kexec.o
  1675. CC net/ipv4/tcp_output.o
  1676. CC drivers/acpi/acpica/utstrsuppt.o
  1677. GEN lib/crc32table.h
  1678. CC fs/proc/kcore.o
  1679. CC kernel/stop_machine.o
  1680. CC drivers/acpi/acpica/utstrtoul64.o
  1681. CC net/ipv6/ipv6_sockglue.o
  1682. CC lib/crc32.o
  1683. CC fs/proc/vmcore.o
  1684. CC drivers/acpi/acpica/utxface.o
  1685. CC fs/proc/kmsg.o
  1686. CC net/netlink/genetlink.o
  1687. CC net/ipv6/ndisc.o
  1688. CC net/core/dst.o
  1689. AR lib/lib.a
  1690. CC kernel/kprobes.o
  1691. EXPORTS lib/lib-ksyms.o
  1692. AR lib/built-in.a
  1693. CC net/core/netevent.o
  1694. CC fs/proc/page.o
  1695. CC net/netfilter/nf_sockopt.o
  1696. CC drivers/acpi/acpica/utxfinit.o
  1697. CC drivers/acpi/acpica/utxferror.o
  1698. CC net/core/neighbour.o
  1699. AR fs/proc/built-in.a
  1700. CC fs/signalfd.o
  1701. CC net/core/rtnetlink.o
  1702. CC drivers/acpi/acpica/utxfmutex.o
  1703. CC net/core/utils.o
  1704. AR drivers/acpi/acpica/built-in.a
  1705. AR net/netlink/built-in.a
  1706. CC fs/timerfd.o
  1707. CC net/netfilter/utils.o
  1708. CC net/core/link_watch.o
  1709. CC drivers/acpi/ioapic.o
  1710. CC net/packet/af_packet.o
  1711. CC fs/eventfd.o
  1712. CC kernel/seccomp.o
  1713. CC net/ipv4/tcp_timer.o
  1714. CC net/ipv6/udp.o
  1715. CC drivers/acpi/spcr.o
  1716. CC fs/aio.o
  1717. CC net/core/filter.o
  1718. CC fs/io_uring.o
  1719. CC drivers/acpi/button.o
  1720. CC kernel/relay.o
  1721. CC net/core/sock_diag.o
  1722. CC net/netfilter/nfnetlink.o
  1723. CC net/ipv4/tcp_ipv4.o
  1724. CC kernel/utsname_sysctl.o
  1725. CC drivers/acpi/acpi_video.o
  1726. CC fs/locks.o
  1727. CC kernel/tracepoint.o
  1728. CC fs/binfmt_misc.o
  1729. CC net/core/dev_ioctl.o
  1730. CC net/core/tso.o
  1731. AR net/packet/built-in.a
  1732. CC net/ipv6/udplite.o
  1733. CC kernel/elfcore.o
  1734. CC net/netfilter/nf_conntrack_core.o
  1735. CC net/ipv6/raw.o
  1736. CC fs/binfmt_script.o
  1737. CC kernel/irq_work.o
  1738. CC drivers/acpi/video_detect.o
  1739. CC fs/binfmt_elf.o
  1740. CC net/ipv6/icmp.o
  1741. CC net/core/sock_reuseport.o
  1742. CC fs/mbcache.o
  1743. CC kernel/crash_dump.o
  1744. CC net/core/fib_notifier.o
  1745. CC fs/posix_acl.o
  1746. AR drivers/acpi/built-in.a
  1747. CC drivers/clk/clk-devres.o
  1748. CC fs/coredump.o
  1749. CC kernel/jump_label.o
  1750. CC fs/drop_caches.o
  1751. CC net/ipv4/tcp_minisocks.o
  1752. CC net/core/xdp.o
  1753. CC drivers/clk/clk-bulk.o
  1754. CC fs/fhandle.o
  1755. CC fs/dcookies.o
  1756. CC net/ipv6/mcast.o
  1757. CC kernel/iomem.o
  1758. CC net/core/flow_offload.o
  1759. CC kernel/rseq.o
  1760. CC net/ipv6/reassembly.o
  1761. CC net/netfilter/nf_conntrack_standalone.o
  1762. CC net/netfilter/nf_conntrack_expect.o
  1763. CC drivers/clk/clkdev.o
  1764. CC drivers/clk/clk.o
  1765. AR kernel/built-in.a
  1766. CC net/netfilter/nf_conntrack_helper.o
  1767. CC drivers/clk/clk-divider.o
  1768. AR fs/built-in.a
  1769. CC net/netfilter/nf_conntrack_proto.o
  1770. CC net/netfilter/nf_conntrack_proto_generic.o
  1771. CC net/core/net-sysfs.o
  1772. CC net/ipv6/tcp_ipv6.o
  1773. CC net/ipv4/tcp_cong.o
  1774. CC drivers/clk/clk-fixed-factor.o
  1775. CC net/core/net-procfs.o
  1776. CC net/netfilter/nf_conntrack_proto_tcp.o
  1777. CC net/netfilter/nf_conntrack_proto_udp.o
  1778. CC drivers/clk/clk-fixed-rate.o
  1779. CC net/netfilter/nf_conntrack_proto_icmp.o
  1780. CC drivers/clk/clk-gate.o
  1781. CC drivers/clk/clk-multiplier.o
  1782. CC net/ipv6/ping.o
  1783. CC drivers/clk/clk-mux.o
  1784. CC drivers/clk/clk-composite.o
  1785. CC net/ipv4/tcp_metrics.o
  1786. CC net/netfilter/nf_conntrack_extend.o
  1787. CC net/netfilter/nf_conntrack_acct.o
  1788. CC net/ipv6/exthdrs.o
  1789. CC net/ipv4/tcp_fastopen.o
  1790. CC net/netfilter/nf_conntrack_seqadj.o
  1791. CC drivers/clk/clk-fractional-divider.o
  1792. CC drivers/clk/clk-gpio.o
  1793. CC net/ipv4/tcp_rate.o
  1794. CC net/core/net-traces.o
  1795. CC net/core/ptp_classifier.o
  1796. CC net/netfilter/nf_conntrack_proto_icmpv6.o
  1797. CC net/ipv4/tcp_recovery.o
  1798. CC net/netfilter/nf_nat_core.o
  1799. CC drivers/clk/x86/clk-pmc-atom.o
  1800. CC net/ipv6/datagram.o
  1801. AR drivers/clk/x86/built-in.a
  1802. AR drivers/clk/built-in.a
  1803. CC net/core/gro_cells.o
  1804. CC net/ipv4/tcp_ulp.o
  1805. CC net/netfilter/nf_nat_proto.o
  1806. CC drivers/clocksource/i8253.o
  1807. CC net/ipv4/tcp_offload.o
  1808. CC net/netfilter/nf_nat_helper.o
  1809. CC net/netfilter/nf_nat_redirect.o
  1810. CC net/ipv6/ip6_flowlabel.o
  1811. CC drivers/cpuidle/cpuidle.o
  1812. AR drivers/clocksource/built-in.a
  1813. CC net/ipv4/datagram.o
  1814. CC drivers/cpuidle/driver.o
  1815. CC net/netfilter/nf_nat_masquerade.o
  1816. CC net/ipv4/raw.o
  1817. CC net/ipv6/inet6_connection_sock.o
  1818. CC drivers/cpuidle/governor.o
  1819. CC drivers/cpuidle/sysfs.o
  1820. CC net/ipv6/udp_offload.o
  1821. CC net/netfilter/x_tables.o
  1822. CC net/netfilter/xt_tcpudp.o
  1823. CC net/netfilter/xt_nat.o
  1824. CC net/ipv6/seg6.o
  1825. CC drivers/cpuidle/governors/menu.o
  1826. CC net/ipv6/fib6_notifier.o
  1827. CC drivers/cpuidle/poll_state.o
  1828. AR net/core/built-in.a
  1829. CC net/sched/sch_generic.o
  1830. AR drivers/cpuidle/governors/built-in.a
  1831. CC net/sched/sch_mq.o
  1832. AR drivers/cpuidle/built-in.a
  1833. CC drivers/dma/dmaengine.o
  1834. CC drivers/dma-buf/dma-buf.o
  1835. CC drivers/edac/edac_mc.o
  1836. CC net/unix/af_unix.o
  1837. CC net/ipv4/udp.o
  1838. CC net/unix/garbage.o
  1839. CC net/ipv6/sysctl_net_ipv6.o
  1840. CC net/netfilter/xt_NETMAP.o
  1841. CC drivers/dma-buf/dma-fence.o
  1842. CC net/xfrm/xfrm_policy.o
  1843. CC net/xfrm/xfrm_state.o
  1844. CC net/netfilter/xt_REDIRECT.o
  1845. CC drivers/dma-buf/dma-fence-array.o
  1846. CC net/ipv6/xfrm6_policy.o
  1847. CC drivers/dma/virt-dma.o
  1848. CC drivers/edac/edac_device.o
  1849. CC net/ipv6/xfrm6_state.o
  1850. CC drivers/dma-buf/dma-fence-chain.o
  1851. CC drivers/dma-buf/dma-resv.o
  1852. AR net/sched/built-in.a
  1853. CC net/sysctl_net.o
  1854. CC net/netfilter/xt_MASQUERADE.o
  1855. CC drivers/dma/acpi-dma.o
  1856. CC net/netfilter/xt_conntrack.o
  1857. CC drivers/dma-buf/seqno-fence.o
  1858. CC drivers/edac/edac_mc_sysfs.o
  1859. CC net/ipv6/xfrm6_input.o
  1860. CC net/unix/sysctl_net_unix.o
  1861. CC net/unix/scm.o
  1862. CC drivers/dma-buf/sync_file.o
  1863. CC net/ipv6/xfrm6_output.o
  1864. CC drivers/edac/edac_module.o
  1865. CC net/netfilter/xt_physdev.o
  1866. CC drivers/dma/dw/core.o
  1867. CC net/ipv4/udplite.o
  1868. CC drivers/dma/hsu/hsu.o
  1869. CC drivers/dma/dw/dw.o
  1870. AR drivers/dma-buf/built-in.a
  1871. CC net/ipv6/xfrm6_protocol.o
  1872. CC net/xfrm/xfrm_hash.o
  1873. CC drivers/dma/dw/idma32.o
  1874. CC net/ipv6/netfilter.o
  1875. CC net/netfilter/ipset/ip_set_core.o
  1876. CC drivers/edac/edac_device_sysfs.o
  1877. AR net/unix/built-in.a
  1878. AR drivers/dma/hsu/built-in.a
  1879. CC net/netfilter/ipset/ip_set_getport.o
  1880. CC net/netfilter/ipset/pfxlen.o
  1881. CC net/xfrm/xfrm_input.o
  1882. CC net/ipv4/udp_offload.o
  1883. CC net/xfrm/xfrm_output.o
  1884. CC net/ipv6/proc.o
  1885. CC net/netfilter/ipvs/ip_vs_conn.o
  1886. AR drivers/dma/dw/built-in.a
  1887. CC drivers/edac/wq.o
  1888. AR drivers/dma/built-in.a
  1889. CC net/netfilter/ipvs/ip_vs_core.o
  1890. CC drivers/firewire/init_ohci1394_dma.o
  1891. CC net/ipv4/arp.o
  1892. CC net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
  1893. CC net/ipv6/netfilter/nf_conntrack_reasm.o
  1894. CC net/xfrm/xfrm_sysctl.o
  1895. CC drivers/edac/edac_pci.o
  1896. AR drivers/firewire/built-in.a
  1897. CC net/xfrm/xfrm_replay.o
  1898. CC net/xfrm/xfrm_device.o
  1899. CC net/ipv4/icmp.o
  1900. CC net/ipv6/addrconf_core.o
  1901. AR net/netfilter/ipset/built-in.a
  1902. CC net/ipv6/exthdrs_core.o
  1903. CC net/xfrm/xfrm_algo.o
  1904. CC drivers/edac/edac_pci_sysfs.o
  1905. CC net/netfilter/ipvs/ip_vs_ctl.o
  1906. CC net/netfilter/ipvs/ip_vs_sched.o
  1907. CC net/ipv6/ip6_checksum.o
  1908. CC net/netfilter/ipvs/ip_vs_xmit.o
  1909. AR net/ipv6/netfilter/built-in.a
  1910. CC net/ipv6/ip6_icmp.o
  1911. CC drivers/edac/mce_amd.o
  1912. CC net/ipv4/devinet.o
  1913. CC net/ipv4/af_inet.o
  1914. CC net/ipv6/output_core.o
  1915. CC net/ipv6/protocol.o
  1916. AR net/xfrm/built-in.a
  1917. CC net/netfilter/ipvs/ip_vs_app.o
  1918. CC drivers/firmware/dmi_scan.o
  1919. AR drivers/edac/built-in.a
  1920. CC drivers/firmware/dmi-id.o
  1921. CC net/ipv6/ip6_offload.o
  1922. CC drivers/gpu/vga/vgaarb.o
  1923. CC net/netfilter/ipvs/ip_vs_sync.o
  1924. CC drivers/hid/hid-core.o
  1925. CC drivers/gpu/drm/drm_gem_vram_helper.o
  1926. CC drivers/hid/hid-input.o
  1927. CC drivers/firmware/memmap.o
  1928. CC net/ipv6/tcpv6_offload.o
  1929. CC net/ipv6/exthdrs_offload.o
  1930. CC net/ipv6/inet6_hashtables.o
  1931. AR drivers/firmware/built-in.a
  1932. CC drivers/gpu/drm/drm_vram_helper_common.o
  1933. CC drivers/hwmon/hwmon.o
  1934. AR drivers/gpu/vga/built-in.a
  1935. CC drivers/gpu/drm/drm_vram_mm_helper.o
  1936. CC net/ipv4/igmp.o
  1937. CC net/ipv4/fib_frontend.o
  1938. CC net/ipv4/fib_semantics.o
  1939. CC drivers/gpu/drm/drm_crtc_helper.o
  1940. CC net/netfilter/ipvs/ip_vs_est.o
  1941. CC net/netfilter/ipvs/ip_vs_proto.o
  1942. CC drivers/gpu/drm/drm_dp_helper.o
  1943. CC net/ipv6/mcast_snoop.o
  1944. CC drivers/gpu/drm/drm_dsc.o
  1945. CC drivers/hid/hid-quirks.o
  1946. AR drivers/hwmon/built-in.a
  1947. CC drivers/i2c/i2c-boardinfo.o
  1948. CC drivers/input/input.o
  1949. CC drivers/gpu/drm/drm_probe_helper.o
  1950. CC drivers/gpu/drm/drm_plane_helper.o
  1951. CC drivers/gpu/drm/drm_dp_mst_topology.o
  1952. CC drivers/gpu/drm/drm_atomic_helper.o
  1953. CC drivers/hid/hid-debug.o
  1954. CC drivers/i2c/i2c-core-base.o
  1955. AR net/ipv6/built-in.a
  1956. CC drivers/hid/hidraw.o
  1957. CC drivers/hid/hid-generic.o
  1958. CC net/netfilter/ipvs/ip_vs_pe.o
  1959. CC drivers/i2c/i2c-core-smbus.o
  1960. CC net/ipv4/fib_trie.o
  1961. CC net/ipv4/fib_notifier.o
  1962. CC drivers/input/serio/serio.o
  1963. CC drivers/gpu/drm/drm_kms_helper_common.o
  1964. CC drivers/leds/led-core.o
  1965. CC drivers/input/input-compat.o
  1966. CC drivers/hid/hid-a4tech.o
  1967. CC drivers/gpu/drm/drm_dp_dual_mode_helper.o
  1968. CC net/ipv4/inet_fragment.o
  1969. CC drivers/input/serio/i8042.o
  1970. CC drivers/hid/hid-apple.o
  1971. CC drivers/input/input-mt.o
  1972. CC drivers/leds/led-class.o
  1973. CC net/ipv4/ping.o
  1974. AR net/netfilter/ipvs/built-in.a
  1975. AR net/netfilter/built-in.a
  1976. CC net/ipv4/ip_tunnel_core.o
  1977. CC drivers/i2c/i2c-core-acpi.o
  1978. CC drivers/i2c/i2c-smbus.o
  1979. CC drivers/hid/hid-belkin.o
  1980. CC drivers/gpu/drm/drm_simple_kms_helper.o
  1981. CC drivers/gpu/drm/drm_modeset_helper.o
  1982. CC drivers/leds/led-triggers.o
  1983. CC drivers/hid/hid-cherry.o
  1984. CC drivers/gpu/drm/drm_scdc_helper.o
  1985. CC drivers/input/input-poller.o
  1986. CC net/ipv4/gre_offload.o
  1987. CC drivers/input/serio/serport.o
  1988. CC drivers/input/serio/libps2.o
  1989. CC drivers/i2c/algos/i2c-algo-bit.o
  1990. CC drivers/hid/hid-chicony.o
  1991. AR drivers/leds/built-in.a
  1992. CC drivers/gpu/drm/drm_gem_framebuffer_helper.o
  1993. CC drivers/mailbox/mailbox.o
  1994. CC drivers/input/ff-core.o
  1995. CC drivers/gpu/drm/drm_atomic_state_helper.o
  1996. CC drivers/hid/hid-cypress.o
  1997. CC drivers/hid/hid-kensington.o
  1998. CC drivers/gpu/drm/drm_damage_helper.o
  1999. CC net/ipv4/metrics.o
  2000. CC drivers/i2c/busses/i2c-i801.o
  2001. CC net/ipv4/netlink.o
  2002. AR drivers/i2c/algos/built-in.a
  2003. AR drivers/input/serio/built-in.a
  2004. CC drivers/gpu/drm/drm_format_helper.o
  2005. CC drivers/hid/hid-lg.o
  2006. CC drivers/hid/hid-lgff.o
  2007. CC drivers/md/dm.o
  2008. AR drivers/mailbox/built-in.a
  2009. CC drivers/input/ff-memless.o
  2010. CC drivers/md/dm-table.o
  2011. CC drivers/hid/hid-lg4ff.o
  2012. CC net/ipv4/nexthop.o
  2013. CC drivers/gpu/drm/drm_self_refresh_helper.o
  2014. CC drivers/net/Space.o
  2015. CC drivers/gpu/drm/bridge/panel.o
  2016. CC drivers/hid/hid-microsoft.o
  2017. AR drivers/i2c/busses/built-in.a
  2018. AR drivers/i2c/built-in.a
  2019. CC drivers/hid/hid-monterey.o
  2020. CC drivers/hid/hid-ntrig.o
  2021. CC drivers/input/input-polldev.o
  2022. CC drivers/hid/hid-pl.o
  2023. CC net/ipv4/sysctl_net_ipv4.o
  2024. CC drivers/net/loopback.o
  2025. CC net/ipv4/proc.o
  2026. CC drivers/gpu/drm/drm_fb_helper.o
  2027. CC drivers/input/sparse-keymap.o
  2028. CC net/ipv4/ah4.o
  2029. CC drivers/md/dm-target.o
  2030. CC drivers/hid/hid-petalynx.o
  2031. CC net/ipv4/esp4.o
  2032. CC drivers/hid/usbhid/hid-core.o
  2033. CC drivers/input/input-leds.o
  2034. CC drivers/hid/usbhid/hiddev.o
  2035. CC drivers/md/dm-linear.o
  2036. CC net/ipv4/ipconfig.o
  2037. CC net/ipv4/netfilter.o
  2038. CC drivers/input/mousedev.o
  2039. CC net/ipv4/netfilter/nf_defrag_ipv4.o
  2040. CC net/ipv4/inet_diag.o
  2041. CC drivers/md/dm-stripe.o
  2042. CC drivers/gpu/drm/drm_auth.o
  2043. CC drivers/hid/usbhid/hid-pidff.o
  2044. CC net/ipv4/tcp_diag.o
  2045. CC drivers/net/ethernet/intel/e1000e-ethercat/82571.o
  2046. CC drivers/net/ethernet/intel/igb/igb_main.o
  2047. CC drivers/input/evdev.o
  2048. CC drivers/md/dm-ioctl.o
  2049. CC net/ipv4/tcp_cubic.o
  2050. CC drivers/gpu/drm/drm_cache.o
  2051. AR drivers/hid/usbhid/built-in.a
  2052. AR drivers/hid/built-in.a
  2053. CC drivers/input/keyboard/atkbd.o
  2054. CC net/ipv4/xfrm4_policy.o
  2055. CC drivers/gpu/drm/drm_file.o
  2056. CC net/ipv4/xfrm4_state.o
  2057. CC net/ipv4/netfilter/ip_tables.o
  2058. CC drivers/gpu/drm/drm_gem.o
  2059. CC drivers/net/ethernet/intel/e1000e-ethercat/ich8lan.o
  2060. CC drivers/gpu/drm/drm_ioctl.o
  2061. CC net/ipv4/xfrm4_input.o
  2062. AR drivers/input/keyboard/built-in.a
  2063. AR drivers/input/built-in.a
  2064. CC net/ipv4/xfrm4_output.o
  2065. CC drivers/nvmem/core.o
  2066. CC drivers/md/dm-io.o
  2067. CC net/ipv4/netfilter/iptable_filter.o
  2068. CC net/ipv4/xfrm4_protocol.o
  2069. CC drivers/gpu/drm/drm_irq.o
  2070. CC drivers/gpu/drm/drm_memory.o
  2071. CC drivers/gpu/drm/drm_drv.o
  2072. CC drivers/gpu/drm/drm_pci.o
  2073. CC drivers/net/ethernet/intel/igb/igb_ethtool.o
  2074. AR drivers/nvmem/built-in.a
  2075. CC drivers/net/ethernet/intel/e1000e-ethercat/netdev.o
  2076. CC drivers/pci/access.o
  2077. CC net/ipv4/netfilter/iptable_nat.o
  2078. CC drivers/gpu/drm/drm_sysfs.o
  2079. CC drivers/md/dm-kcopyd.o
  2080. CC drivers/md/dm-sysfs.o
  2081. CC net/ipv4/netfilter/arp_tables.o
  2082. CC drivers/gpu/drm/drm_hashtab.o
  2083. CC drivers/gpu/drm/drm_mm.o
  2084. CC drivers/net/ethernet/intel/e1000e-ethercat/phy.o
  2085. CC drivers/md/dm-stats.o
  2086. CC drivers/pci/bus.o
  2087. CC drivers/net/ethernet/intel/igb/e1000_82575.o
  2088. CC drivers/net/ethernet/intel/e1000e-ethercat/param.o
  2089. CC drivers/net/ethernet/intel/e1000e-ethercat/es2lan.o
  2090. CC drivers/gpu/drm/drm_crtc.o
  2091. CC drivers/gpu/drm/drm_fourcc.o
  2092. CC drivers/net/ethernet/intel/igb/e1000_mac.o
  2093. CC drivers/md/dm-rq.o
  2094. CC drivers/pci/probe.o
  2095. CC drivers/pci/host-bridge.o
  2096. CC drivers/md/dm-builtin.o
  2097. CC drivers/gpu/drm/drm_modes.o
  2098. AR net/ipv4/netfilter/built-in.a
  2099. AR net/ipv4/built-in.a
  2100. AR net/built-in.a
  2101. CC drivers/net/phy/mdio-boardinfo.o
  2102. CC drivers/pci/remove.o
  2103. CC drivers/pci/pci.o
  2104. CC drivers/net/phy/phy.o
  2105. CC drivers/net/ethernet/intel/igb/e1000_nvm.o
  2106. CC drivers/gpu/drm/drm_edid.o
  2107. CC drivers/net/ethernet/intel/e1000e-ethercat/lib.o
  2108. CC drivers/pci/pci-driver.o
  2109. CC drivers/pci/search.o
  2110. CC drivers/pci/pci-sysfs.o
  2111. CC drivers/net/ethernet/intel/igb/e1000_phy.o
  2112. AR drivers/md/built-in.a
  2113. CC drivers/pcmcia/cs.o
  2114. CC drivers/gpu/drm/drm_encoder_slave.o
  2115. CC drivers/net/ethernet/intel/igb/e1000_mbx.o
  2116. CC drivers/pci/rom.o
  2117. CC drivers/pci/setup-res.o
  2118. AR drivers/net/ethernet/intel/e1000e-ethercat/built-in.a
  2119. CC drivers/pci/irq.o
  2120. CC drivers/pci/vpd.o
  2121. CC drivers/net/phy/phy-c45.o
  2122. CC drivers/pci/setup-bus.o
  2123. CC drivers/net/ethernet/intel/igb/e1000_i210.o
  2124. CC drivers/net/ethernet/intel/igb/igb_ptp.o
  2125. CC drivers/pcmcia/socket_sysfs.o
  2126. CC drivers/gpu/drm/drm_trace_points.o
  2127. CC drivers/pci/vc.o
  2128. CC drivers/pci/mmap.o
  2129. CC drivers/pci/setup-irq.o
  2130. CC drivers/gpu/drm/drm_prime.o
  2131. CC drivers/pci/proc.o
  2132. CC drivers/pci/slot.o
  2133. CC drivers/net/phy/phy-core.o
  2134. CC drivers/pcmcia/cardbus.o
  2135. CC drivers/pci/pci-acpi.o
  2136. CC drivers/net/phy/phy_device.o
  2137. CC drivers/gpu/drm/drm_rect.o
  2138. CC drivers/gpu/drm/drm_vma_manager.o
  2139. CC drivers/gpu/drm/drm_flip_work.o
  2140. CC drivers/net/ethernet/intel/igb/igb_hwmon.o
  2141. CC drivers/pcmcia/ds.o
  2142. CC drivers/pci/quirks.o
  2143. CC drivers/pci/hotplug/pci_hotplug_core.o
  2144. CC drivers/pci/hotplug/acpi_pcihp.o
  2145. CC drivers/gpu/drm/drm_modeset_lock.o
  2146. CC drivers/pci/pcie/portdrv_core.o
  2147. CC drivers/pci/msi.o
  2148. CC drivers/pci/pcie/portdrv_pci.o
  2149. CC drivers/gpu/drm/drm_atomic.o
  2150. CC drivers/gpu/drm/drm_bridge.o
  2151. AR drivers/net/ethernet/intel/igb/built-in.a
  2152. AR drivers/net/ethernet/intel/built-in.a
  2153. CC drivers/net/ethernet/realtek/8139cp.o
  2154. CC drivers/net/ethernet/realtek/r8169_main.o
  2155. CC drivers/gpu/drm/drm_framebuffer.o
  2156. AR drivers/pci/hotplug/built-in.a
  2157. CC drivers/gpu/drm/drm_connector.o
  2158. CC drivers/pcmcia/pcmcia_resource.o
  2159. CC drivers/pci/ats.o
  2160. CC drivers/net/phy/mdio_bus.o
  2161. CC drivers/pci/pcie/err.o
  2162. CC drivers/gpu/drm/drm_blend.o
  2163. CC drivers/pci/pcie/aspm.o
  2164. CC drivers/pci/pci-label.o
  2165. CC drivers/gpu/drm/drm_encoder.o
  2166. CC drivers/pcmcia/cistpl.o
  2167. CC drivers/gpu/drm/drm_mode_object.o
  2168. CC drivers/gpu/drm/drm_property.o
  2169. CC drivers/gpu/drm/drm_plane.o
  2170. CC drivers/gpu/drm/drm_color_mgmt.o
  2171. CC drivers/pcmcia/pcmcia_cis.o
  2172. CC drivers/gpu/drm/drm_print.o
  2173. CC drivers/gpu/drm/drm_dumb_buffers.o
  2174. CC drivers/net/phy/mdio_device.o
  2175. CC drivers/gpu/drm/drm_mode_config.o
  2176. CC drivers/pci/pcie/aer.o
  2177. CC drivers/gpu/drm/drm_vblank.o
  2178. CC drivers/gpu/drm/drm_syncobj.o
  2179. CC drivers/gpu/drm/drm_lease.o
  2180. CC drivers/pcmcia/rsrc_mgr.o
  2181. CC drivers/net/ethernet/realtek/r8169_firmware.o
  2182. CC drivers/gpu/drm/drm_writeback.o
  2183. CC drivers/gpu/drm/drm_client.o
  2184. CC drivers/gpu/drm/drm_client_modeset.o
  2185. CC drivers/net/phy/realtek.o
  2186. CC drivers/gpu/drm/drm_atomic_uapi.o
  2187. AR drivers/net/ethernet/realtek/built-in.a
  2188. AR drivers/net/ethernet/built-in.a
  2189. CC drivers/gpu/drm/drm_hdcp.o
  2190. CC drivers/pcmcia/rsrc_nonstatic.o
  2191. CC drivers/gpu/drm/drm_panel.o
  2192. AR drivers/pci/pcie/built-in.a
  2193. AR drivers/pci/built-in.a
  2194. CC drivers/net/mii.o
  2195. CC drivers/platform/x86/pmc_atom.o
  2196. AR drivers/net/phy/built-in.a
  2197. CC drivers/gpu/drm/drm_debugfs.o
  2198. CC drivers/gpu/drm/drm_agpsupport.o
  2199. CC drivers/pnp/core.o
  2200. CC drivers/gpu/drm/drm_debugfs_crc.o
  2201. CC drivers/pnp/card.o
  2202. CC drivers/power/supply/power_supply_core.o
  2203. CC drivers/pnp/driver.o
  2204. CC drivers/gpu/drm/drm_panel_orientation_quirks.o
  2205. AR drivers/platform/x86/built-in.a
  2206. CC drivers/gpu/drm/bochs/bochs_drv.o
  2207. AR drivers/platform/built-in.a
  2208. CC drivers/pnp/resource.o
  2209. CC drivers/pnp/manager.o
  2210. CC drivers/pcmcia/yenta_socket.o
  2211. AR drivers/net/built-in.a
  2212. CC drivers/gpu/drm/i2c/ch7006_drv.o
  2213. CC drivers/gpu/drm/i2c/ch7006_mode.o
  2214. CC drivers/gpu/drm/i2c/sil164_drv.o
  2215. CC drivers/power/supply/power_supply_sysfs.o
  2216. CC drivers/power/supply/power_supply_leds.o
  2217. CC drivers/pnp/support.o
  2218. CC drivers/gpu/drm/ttm/ttm_memory.o
  2219. CC drivers/gpu/drm/bochs/bochs_mm.o
  2220. CC drivers/power/supply/power_supply_hwmon.o
  2221. CC drivers/pnp/interface.o
  2222. CC drivers/pps/pps.o
  2223. CC drivers/ptp/ptp_clock.o
  2224. CC drivers/ptp/ptp_chardev.o
  2225. CC drivers/ras/ras.o
  2226. AR drivers/gpu/drm/i2c/built-in.a
  2227. CC drivers/pnp/quirks.o
  2228. AR drivers/power/supply/built-in.a
  2229. AR drivers/power/built-in.a
  2230. CC drivers/gpu/drm/bochs/bochs_kms.o
  2231. CC drivers/pnp/system.o
  2232. CC drivers/rtc/lib.o
  2233. CC drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.o
  2234. AR drivers/pcmcia/built-in.a
  2235. CC drivers/gpu/drm/bochs/bochs_hw.o
  2236. CC drivers/scsi/scsi.o
  2237. CC drivers/pnp/pnpacpi/core.o
  2238. CC drivers/gpu/drm/ttm/ttm_tt.o
  2239. CC drivers/thermal/thermal_core.o
  2240. CC drivers/pnp/pnpacpi/rsparser.o
  2241. CC drivers/pps/kapi.o
  2242. CC drivers/gpu/drm/ttm/ttm_bo.o
  2243. CC drivers/ptp/ptp_sysfs.o
  2244. CC drivers/rtc/systohc.o
  2245. AR drivers/gpu/drm/bochs/built-in.a
  2246. CC drivers/rtc/class.o
  2247. CC drivers/ras/debugfs.o
  2248. CC drivers/rtc/interface.o
  2249. AR drivers/ptp/built-in.a
  2250. CC drivers/tty/tty_io.o
  2251. CC drivers/tty/n_tty.o
  2252. AR drivers/pnp/pnpacpi/built-in.a
  2253. AR drivers/pnp/built-in.a
  2254. CC drivers/usb/class/usblp.o
  2255. CC drivers/pps/sysfs.o
  2256. CC drivers/gpu/drm/vmwgfx/vmwgfx_gmr.o
  2257. AR drivers/ras/built-in.a
  2258. CC drivers/rtc/nvmem.o
  2259. AR drivers/pps/built-in.a
  2260. CC drivers/video/hdmi.o
  2261. CC drivers/video/backlight/backlight.o
  2262. CC drivers/video/console/dummycon.o
  2263. CC drivers/scsi/hosts.o
  2264. AR drivers/usb/class/built-in.a
  2265. CC drivers/gpu/drm/ttm/ttm_bo_util.o
  2266. CC drivers/usb/common/common.o
  2267. CC drivers/gpu/drm/vmwgfx/vmwgfx_kms.o
  2268. CC drivers/usb/common/debug.o
  2269. CC drivers/thermal/thermal_sysfs.o
  2270. CC drivers/video/console/vgacon.o
  2271. CC drivers/video/backlight/generic_bl.o
  2272. CC drivers/video/fbdev/core/fb_cmdline.o
  2273. CC drivers/rtc/dev.o
  2274. AR drivers/usb/common/built-in.a
  2275. CC drivers/scsi/scsi_ioctl.o
  2276. CC drivers/tty/tty_ioctl.o
  2277. CC drivers/tty/tty_ldisc.o
  2278. CC drivers/tty/tty_buffer.o
  2279. CC drivers/usb/core/usb.o
  2280. AR drivers/video/backlight/built-in.a
  2281. CC drivers/thermal/thermal_helpers.o
  2282. CC drivers/video/logo/logo.o
  2283. CC drivers/rtc/proc.o
  2284. CC drivers/gpu/drm/ttm/ttm_bo_vm.o
  2285. CC drivers/video/fbdev/core/fb_notify.o
  2286. LOGO drivers/video/logo/logo_linux_clut224.c
  2287. CC drivers/video/logo/logo_linux_clut224.o
  2288. CC drivers/rtc/sysfs.o
  2289. AR drivers/video/logo/built-in.a
  2290. CC drivers/thermal/thermal_hwmon.o
  2291. CC drivers/usb/core/hub.o
  2292. CC drivers/gpu/drm/vmwgfx/vmwgfx_drv.o
  2293. CC drivers/scsi/scsicam.o
  2294. AR drivers/video/console/built-in.a
  2295. CC drivers/tty/tty_port.o
  2296. CC drivers/tty/tty_mutex.o
  2297. CC drivers/usb/core/hcd.o
  2298. CC drivers/gpu/drm/vmwgfx/vmwgfx_fb.o
  2299. CC drivers/video/fbdev/core/fbmem.o
  2300. CC drivers/gpu/drm/ttm/ttm_module.o
  2301. CC drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.o
  2302. CC drivers/rtc/rtc-mc146818-lib.o
  2303. CC drivers/thermal/step_wise.o
  2304. CC drivers/gpu/drm/ttm/ttm_execbuf_util.o
  2305. CC drivers/gpu/drm/ttm/ttm_page_alloc.o
  2306. CC drivers/scsi/scsi_error.o
  2307. CC drivers/thermal/user_space.o
  2308. CC drivers/tty/tty_ldsem.o
  2309. CC drivers/tty/tty_baudrate.o
  2310. CC drivers/rtc/rtc-cmos.o
  2311. CC drivers/gpu/drm/vmwgfx/vmwgfx_resource.o
  2312. CC drivers/thermal/intel/x86_pkg_temp_thermal.o
  2313. CC drivers/tty/tty_jobctrl.o
  2314. CC drivers/tty/n_null.o
  2315. CC drivers/usb/core/urb.o
  2316. CC drivers/gpu/drm/ttm/ttm_bo_manager.o
  2317. CC drivers/tty/pty.o
  2318. CC drivers/gpu/drm/ttm/ttm_page_alloc_dma.o
  2319. AR drivers/thermal/intel/built-in.a
  2320. AR drivers/thermal/built-in.a
  2321. CC drivers/gpu/drm/ttm/ttm_agp_backend.o
  2322. CC drivers/usb/core/message.o
  2323. AR drivers/rtc/built-in.a
  2324. CC drivers/tty/sysrq.o
  2325. CC drivers/video/fbdev/core/fbmon.o
  2326. CC drivers/video/fbdev/core/fbcmap.o
  2327. CC drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.o
  2328. CC drivers/gpu/drm/vmwgfx/vmwgfx_fifo.o
  2329. CC drivers/tty/serial/serial_core.o
  2330. CC drivers/scsi/scsi_lib.o
  2331. CC drivers/scsi/constants.o
  2332. CC drivers/tty/serial/earlycon.o
  2333. CC drivers/usb/core/driver.o
  2334. CC drivers/usb/core/config.o
  2335. CC drivers/video/fbdev/core/fbsysfs.o
  2336. AR drivers/gpu/drm/ttm/built-in.a
  2337. CC drivers/gpu/drm/vmwgfx/vmwgfx_irq.o
  2338. CC drivers/video/fbdev/core/modedb.o
  2339. CC drivers/video/fbdev/core/fbcvt.o
  2340. CC drivers/tty/serial/8250/8250_core.o
  2341. CC drivers/tty/vt/vt_ioctl.o
  2342. CC drivers/usb/core/file.o
  2343. CC drivers/tty/serial/8250/8250_pnp.o
  2344. CC drivers/scsi/scsi_lib_dma.o
  2345. CC drivers/tty/serial/8250/8250_port.o
  2346. CC drivers/usb/early/ehci-dbgp.o
  2347. CC drivers/gpu/drm/vmwgfx/vmwgfx_ldu.o
  2348. CC drivers/tty/vt/vc_screen.o
  2349. CC drivers/video/fbdev/core/fb_defio.o
  2350. CC drivers/tty/serial/8250/8250_dma.o
  2351. CC drivers/usb/core/buffer.o
  2352. CC drivers/usb/core/sysfs.o
  2353. CC drivers/usb/core/endpoint.o
  2354. CC drivers/tty/serial/8250/8250_dwlib.o
  2355. CC drivers/tty/vt/selection.o
  2356. CC drivers/scsi/scsi_scan.o
  2357. AR drivers/usb/early/built-in.a
  2358. CC drivers/tty/serial/8250/8250_pci.o
  2359. CC drivers/usb/host/pci-quirks.o
  2360. CC drivers/gpu/drm/vmwgfx/vmwgfx_ttm_glue.o
  2361. CC drivers/tty/serial/8250/8250_exar.o
  2362. CC drivers/usb/core/devio.o
  2363. CC drivers/usb/core/notify.o
  2364. CC drivers/tty/serial/8250/8250_early.o
  2365. CC drivers/video/fbdev/core/fbcon.o
  2366. CC drivers/gpu/drm/vmwgfx/vmwgfx_overlay.o
  2367. CC drivers/tty/serial/8250/8250_lpss.o
  2368. CC drivers/usb/host/ehci-hcd.o
  2369. CC drivers/video/fbdev/core/bitblit.o
  2370. CC drivers/tty/vt/keyboard.o
  2371. CC drivers/usb/host/ehci-pci.o
  2372. CC drivers/usb/host/ohci-hcd.o
  2373. CC drivers/usb/core/generic.o
  2374. CC drivers/scsi/scsi_sysfs.o
  2375. CC drivers/tty/serial/8250/8250_mid.o
  2376. CC drivers/usb/core/quirks.o
  2377. CC drivers/gpu/drm/vmwgfx/vmwgfx_marker.o
  2378. CC drivers/tty/vt/consolemap.o
  2379. CC drivers/video/fbdev/core/softcursor.o
  2380. AR drivers/tty/serial/8250/built-in.a
  2381. AR drivers/tty/serial/built-in.a
  2382. CC drivers/usb/host/ohci-pci.o
  2383. CC drivers/usb/core/devices.o
  2384. CC drivers/usb/core/phy.o
  2385. CC drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.o
  2386. CC drivers/gpu/drm/vmwgfx/vmwgfx_fence.o
  2387. CC drivers/usb/host/uhci-hcd.o
  2388. CC drivers/usb/core/port.o
  2389. CC drivers/tty/vt/consolemap_deftbl.o
  2390. CC drivers/tty/vt/vt.o
  2391. CC drivers/video/fbdev/core/tileblit.o
  2392. CC drivers/scsi/scsi_devinfo.o
  2393. CC drivers/tty/vt/defkeymap.o
  2394. CC drivers/video/fbdev/core/cfbfillrect.o
  2395. CC drivers/scsi/scsi_sysctl.o
  2396. CC drivers/video/fbdev/core/cfbcopyarea.o
  2397. CC drivers/video/fbdev/core/cfbimgblt.o
  2398. CC drivers/gpu/drm/vmwgfx/vmwgfx_bo.o
  2399. CC drivers/usb/host/ohci-platform.o
  2400. CC drivers/usb/host/xhci.o
  2401. CC drivers/usb/core/hcd-pci.o
  2402. CC drivers/usb/host/xhci-mem.o
  2403. CC drivers/video/fbdev/core/sysfillrect.o
  2404. CC drivers/video/fbdev/core/syscopyarea.o
  2405. CC drivers/video/fbdev/core/sysimgblt.o
  2406. CC drivers/scsi/scsi_proc.o
  2407. CC drivers/video/fbdev/core/fb_sys_fops.o
  2408. CC drivers/usb/host/xhci-ext-caps.o
  2409. CC drivers/usb/core/usb-acpi.o
  2410. CC drivers/gpu/drm/vmwgfx/vmwgfx_scrn.o
  2411. CC drivers/gpu/drm/vmwgfx/vmwgfx_context.o
  2412. CC drivers/scsi/scsi_debugfs.o
  2413. CC drivers/usb/host/xhci-ring.o
  2414. CC drivers/usb/host/xhci-hub.o
  2415. CC drivers/usb/host/xhci-dbg.o
  2416. AR drivers/video/fbdev/core/built-in.a
  2417. AR drivers/video/fbdev/built-in.a
  2418. AR drivers/video/built-in.a
  2419. CC drivers/usb/host/xhci-trace.o
  2420. CC drivers/usb/host/xhci-dbgcap.o
  2421. AR drivers/usb/core/built-in.a
  2422. CC drivers/scsi/scsi_trace.o
  2423. AR drivers/tty/vt/built-in.a
  2424. AR drivers/tty/built-in.a
  2425. CC drivers/usb/mon/mon_main.o
  2426. CC drivers/usb/mon/mon_stat.o
  2427. CC drivers/usb/mon/mon_text.o
  2428. CC drivers/gpu/drm/vmwgfx/vmwgfx_surface.o
  2429. CC drivers/usb/host/xhci-dbgtty.o
  2430. CC drivers/usb/host/xhci-debugfs.o
  2431. CC drivers/usb/mon/mon_bin.o
  2432. CC drivers/scsi/scsi_logging.o
  2433. CC drivers/usb/storage/scsiglue.o
  2434. CC drivers/usb/host/xhci-pci.o
  2435. CC drivers/usb/host/xhci-plat.o
  2436. CC drivers/usb/storage/protocol.o
  2437. CC drivers/usb/storage/transport.o
  2438. CC drivers/usb/storage/usb.o
  2439. CC drivers/usb/storage/initializers.o
  2440. AR drivers/usb/mon/built-in.a
  2441. CC drivers/usb/storage/sierra_ms.o
  2442. CC drivers/gpu/drm/vmwgfx/vmwgfx_prime.o
  2443. CC drivers/gpu/drm/vmwgfx/vmwgfx_mob.o
  2444. CC drivers/usb/storage/option_ms.o
  2445. CC drivers/gpu/drm/vmwgfx/vmwgfx_shader.o
  2446. AR drivers/usb/host/built-in.a
  2447. CC drivers/usb/storage/usual-tables.o
  2448. CC drivers/scsi/scsi_common.o
  2449. CC drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf_res.o
  2450. CC drivers/scsi/scsi_transport_spi.o
  2451. CC drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.o
  2452. CC drivers/gpu/drm/vmwgfx/vmwgfx_stdu.o
  2453. CC drivers/scsi/sd.o
  2454. CC drivers/gpu/drm/vmwgfx/vmwgfx_cotable.o
  2455. CC drivers/gpu/drm/vmwgfx/vmwgfx_so.o
  2456. CC drivers/scsi/sd_dif.o
  2457. AR drivers/usb/storage/built-in.a
  2458. CC drivers/scsi/sr.o
  2459. AR drivers/usb/built-in.a
  2460. CC drivers/scsi/sr_ioctl.o
  2461. CC drivers/scsi/sr_vendor.o
  2462. CC drivers/scsi/sg.o
  2463. CC drivers/gpu/drm/vmwgfx/vmwgfx_binding.o
  2464. CC drivers/gpu/drm/vmwgfx/vmwgfx_msg.o
  2465. CC drivers/gpu/drm/vmwgfx/vmwgfx_simple_resource.o
  2466. CC drivers/gpu/drm/vmwgfx/vmwgfx_va.o
  2467. CC drivers/gpu/drm/vmwgfx/vmwgfx_blit.o
  2468. CC drivers/gpu/drm/vmwgfx/vmwgfx_validation.o
  2469. CC drivers/gpu/drm/vmwgfx/ttm_object.o
  2470. CC drivers/gpu/drm/vmwgfx/ttm_lock.o
  2471. AR drivers/gpu/drm/vmwgfx/built-in.a
  2472. AR drivers/gpu/drm/built-in.a
  2473. AR drivers/gpu/built-in.a
  2474. AR drivers/scsi/built-in.a
  2475. AR drivers/built-in.a
  2476. GEN .version
  2477. CHK include/generated/compile.h
  2478. UPD include/generated/compile.h
  2479. CC init/version.o
  2480. AR init/built-in.a
  2481. LD vmlinux.o
  2482. MODPOST vmlinux.o
  2483. MODINFO modules.builtin.modinfo
  2484. LD .tmp_vmlinux.kallsyms1
  2485. KSYM .tmp_vmlinux.kallsyms1.o
  2486. LD .tmp_vmlinux.kallsyms2
  2487. KSYM .tmp_vmlinux.kallsyms2.o
  2488. LD vmlinux
  2489. SORTEX vmlinux
  2490. SYSMAP System.map
  2491. AS arch/x86/boot/bioscall.o
  2492. CC arch/x86/boot/a20.o
  2493. AS arch/x86/boot/copy.o
  2494. HOSTCC arch/x86/boot/mkcpustr
  2495. CC arch/x86/boot/cmdline.o
  2496. CC arch/x86/boot/cpuflags.o
  2497. CC arch/x86/boot/cpucheck.o
  2498. CC arch/x86/boot/early_serial_console.o
  2499. CC arch/x86/boot/edd.o
  2500. CC arch/x86/boot/main.o
  2501. CC arch/x86/boot/memory.o
  2502. CC arch/x86/boot/pm.o
  2503. AS arch/x86/boot/pmjump.o
  2504. CC arch/x86/boot/printf.o
  2505. CC arch/x86/boot/regs.o
  2506. CC arch/x86/boot/string.o
  2507. CC arch/x86/boot/tty.o
  2508. CC arch/x86/boot/video.o
  2509. CC arch/x86/boot/video-mode.o
  2510. CC arch/x86/boot/version.o
  2511. CC arch/x86/boot/video-vga.o
  2512. CC arch/x86/boot/video-bios.o
  2513. CC arch/x86/boot/video-vesa.o
  2514. HOSTCC arch/x86/boot/tools/build
  2515. LDS arch/x86/boot/compressed/vmlinux.lds
  2516. CPUSTR arch/x86/boot/cpustr.h
  2517. AS arch/x86/boot/compressed/head_64.o
  2518. VOFFSET arch/x86/boot/compressed/../voffset.h
  2519. CC arch/x86/boot/cpu.o
  2520. CC arch/x86/boot/compressed/string.o
  2521. CC arch/x86/boot/compressed/cmdline.o
  2522. OBJCOPY arch/x86/boot/compressed/vmlinux.bin
  2523. HOSTCC arch/x86/boot/compressed/mkpiggy
  2524. CC arch/x86/boot/compressed/error.o
  2525. CC arch/x86/boot/compressed/cpuflags.o
  2526. AS arch/x86/boot/compressed/mem_encrypt.o
  2527. CC arch/x86/boot/compressed/early_serial_console.o
  2528. CC arch/x86/boot/compressed/pgtable_64.o
  2529. CC arch/x86/boot/compressed/acpi.o
  2530. GZIP arch/x86/boot/compressed/vmlinux.bin.gz
  2531. CC arch/x86/boot/compressed/misc.o
  2532. MKPIGGY arch/x86/boot/compressed/piggy.S
  2533. AS arch/x86/boot/compressed/piggy.o
  2534. LD arch/x86/boot/compressed/vmlinux
  2535. ZOFFSET arch/x86/boot/zoffset.h
  2536. OBJCOPY arch/x86/boot/vmlinux.bin
  2537. AS arch/x86/boot/header.o
  2538. LD arch/x86/boot/setup.elf
  2539. OBJCOPY arch/x86/boot/setup.bin
  2540. BUILD arch/x86/boot/bzImage
  2541. Setup is 16380 bytes (padded to 16384 bytes).
  2542. System is 8017 kB
  2543. CRC 9ec7cfe2
  2544. Kernel: arch/x86/boot/bzImage is ready (#5)
  2545. echo "----------------------------------------[ BUILDING linux DONE ]---"
  2546. ----------------------------------------[ BUILDING linux DONE ]---
  2547. /
  2548. -- [ Build rootfs ] -----------------------------------------
  2549. Config=x86_defconfig
  2550. make -C ../../buildroot BR2_EXTERNAL_DIRS="../agency/rootfs" O=/home/reds/opencn/agency/rootfs/. x86_defconfig
  2551. #
  2552. # configuration written to /home/reds/opencn/agency/rootfs/.config
  2553. #
  2554. make -C ../../buildroot BR2_EXTERNAL_DIRS="../agency/rootfs" O=/home/reds/opencn/agency/rootfs/. source
  2555. /usr/bin/make -j1 O=/home/reds/opencn/agency/rootfs HOSTCC="/usr/bin/gcc" HOSTCXX="/usr/bin/g++" syncconfig
  2556. >>> host-m4 1.4.19 Downloading
  2557. --2023-07-13 11:14:26-- http://ftpmirror.gnu.org/m4/m4-1.4.19.tar.xz
  2558. Resolving ftpmirror.gnu.org (ftpmirror.gnu.org)... 209.51.188.200, 2001:470:142:5::200
  2559. Connecting to ftpmirror.gnu.org (ftpmirror.gnu.org)|209.51.188.200|:80... connected.
  2560. HTTP request sent, awaiting response... 302 Moved Temporarily
  2561. Location: http://mirrors.nav.ro/gnu/m4/m4-1.4.19.tar.xz [following]
  2562. --2023-07-13 11:14:26-- http://mirrors.nav.ro/gnu/m4/m4-1.4.19.tar.xz
  2563. Resolving mirrors.nav.ro (mirrors.nav.ro)... 5.154.224.26, 2a00:ece0:6718:103::a
  2564. Connecting to mirrors.nav.ro (mirrors.nav.ro)|5.154.224.26|:80... connected.
  2565. HTTP request sent, awaiting response... 200 OK
  2566. Length: 1654908 (1.6M) [application/x-xz]
  2567. Saving to: '/home/reds/opencn/agency/rootfs/build/.m4-1.4.19.tar.xz.A1cN3m/output'
  2568.  
  2569. /home/reds/opencn/agency/rootfs/build/.m4-1.4 100%[=================================================================================================>] 1.58M 4.48MB/s in 0.4s
  2570.  
  2571. 2023-07-13 11:14:27 (4.48 MB/s) - '/home/reds/opencn/agency/rootfs/build/.m4-1.4.19.tar.xz.A1cN3m/output' saved [1654908/1654908]
  2572.  
  2573. m4-1.4.19.tar.xz: OK (sha256: 63aede5c6d33b6d9b13511cd0be2cac046f2e70fd0a07aa9573a04a82783af96)
  2574. >>> avahi 0.8 Downloading
  2575. --2023-07-13 11:14:27-- https://github.com/lathiat/avahi/releases/download/v0.8/avahi-0.8.tar.gz
  2576. Resolving github.com (github.com)... 140.82.121.4
  2577. Connecting to github.com (github.com)|140.82.121.4|:443... connected.
  2578. HTTP request sent, awaiting response... 302 Found
  2579. Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/27156301/1c666780-5261-11ea-8848-6cb88b525779?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20230713%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230713T091427Z&X-Amz-Expires=300&X-Amz-Signature=0efbd70cd8f4f95e760ab0cdb91f3da63a8b57eee0f67729f58485e184b61026&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=27156301&response-content-disposition=attachment%3B%20filename%3Davahi-0.8.tar.gz&response-content-type=application%2Foctet-stream [following]
  2580. --2023-07-13 11:14:27-- https://objects.githubusercontent.com/github-production-release-asset-2e65be/27156301/1c666780-5261-11ea-8848-6cb88b525779?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20230713%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230713T091427Z&X-Amz-Expires=300&X-Amz-Signature=0efbd70cd8f4f95e760ab0cdb91f3da63a8b57eee0f67729f58485e184b61026&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=27156301&response-content-disposition=attachment%3B%20filename%3Davahi-0.8.tar.gz&response-content-type=application%2Foctet-stream
  2581. Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.109.133, 185.199.108.133, 185.199.111.133, ...
  2582. Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.109.133|:443... connected.
  2583. HTTP request sent, awaiting response... 200 OK
  2584. Length: 1591458 (1.5M) [application/octet-stream]
  2585. Saving to: '/home/reds/opencn/agency/rootfs/build/.avahi-0.8.tar.gz.nUIUmS/output'
  2586.  
  2587. /home/reds/opencn/agency/rootfs/build/.avahi- 100%[=================================================================================================>] 1.52M 4.42MB/s in 0.3s
  2588.  
  2589. 2023-07-13 11:14:28 (4.42 MB/s) - '/home/reds/opencn/agency/rootfs/build/.avahi-0.8.tar.gz.nUIUmS/output' saved [1591458/1591458]
  2590.  
  2591. avahi-0.8.tar.gz: OK (sha256: 060309d7a333d38d951bc27598c677af1796934dbd98e1024e7ad8de798fedda)
  2592. >>> libdaemon 0.14 Downloading
  2593. --2023-07-13 11:14:28-- http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz
  2594. Resolving 0pointer.de (0pointer.de)... 85.214.157.71, 2a01:238:43ed:c300:10c3:bcf3:3266:da74
  2595. Connecting to 0pointer.de (0pointer.de)|85.214.157.71|:80... connected.
  2596. HTTP request sent, awaiting response... 200 OK
  2597. Length: 340474 (332K) [application/x-gzip]
  2598. Saving to: '/home/reds/opencn/agency/rootfs/build/.libdaemon-0.14.tar.gz.slhjNo/output'
  2599.  
  2600. /home/reds/opencn/agency/rootfs/build/.libdae 100%[=================================================================================================>] 332.49K 1.38MB/s in 0.2s
  2601.  
  2602. 2023-07-13 11:14:28 (1.38 MB/s) - '/home/reds/opencn/agency/rootfs/build/.libdaemon-0.14.tar.gz.slhjNo/output' saved [340474/340474]
  2603.  
  2604. libdaemon-0.14.tar.gz: OK (sha256: fd23eb5f6f986dcc7e708307355ba3289abe03cc381fc47a80bca4a50aa6b834)
  2605. >>> e2fsprogs 1.45.6 Downloading
  2606. --2023-07-13 11:14:28-- https://cdn.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.45.6/e2fsprogs-1.45.6.tar.xz
  2607. Resolving cdn.kernel.org (cdn.kernel.org)... 146.75.117.176, 2a04:4e42:8d::432
  2608. Connecting to cdn.kernel.org (cdn.kernel.org)|146.75.117.176|:443... connected.
  2609. HTTP request sent, awaiting response... 200 OK
  2610. Length: 5572144 (5.3M) [application/x-xz]
  2611. Saving to: '/home/reds/opencn/agency/rootfs/build/.e2fsprogs-1.45.6.tar.xz.HRpHuQ/output'
  2612.  
  2613. /home/reds/opencn/agency/rootfs/build/.e2fspr 100%[=================================================================================================>] 5.31M 5.76MB/s in 0.9s
  2614.  
  2615. 2023-07-13 11:14:29 (5.76 MB/s) - '/home/reds/opencn/agency/rootfs/build/.e2fsprogs-1.45.6.tar.xz.HRpHuQ/output' saved [5572144/5572144]
  2616.  
  2617. e2fsprogs-1.45.6.tar.xz: OK (sha256: ffa7ae6954395abdc50d0f8605d8be84736465afc53b8938ef473fcf7ff44256)
  2618. >>> libopenssl 1.1.1j Downloading
  2619. --2023-07-13 11:14:30-- https://www.openssl.org/source/openssl-1.1.1j.tar.gz
  2620. Resolving www.openssl.org (www.openssl.org)... 2.20.98.168, 2a02:26f0:9c00:289::c1e, 2a02:26f0:9c00:284::c1e
  2621. Connecting to www.openssl.org (www.openssl.org)|2.20.98.168|:443... connected.
  2622. HTTP request sent, awaiting response... 200 OK
  2623. Length: 9823161 (9.4M) [application/x-gzip]
  2624. Saving to: '/home/reds/opencn/agency/rootfs/build/.openssl-1.1.1j.tar.gz.utJlvU/output'
  2625.  
  2626. /home/reds/opencn/agency/rootfs/build/.openss 100%[=================================================================================================>] 9.37M 8.20MB/s in 1.1s
  2627.  
  2628. 2023-07-13 11:14:47 (8.20 MB/s) - '/home/reds/opencn/agency/rootfs/build/.openssl-1.1.1j.tar.gz.utJlvU/output' saved [9823161/9823161]
  2629.  
  2630. openssl-1.1.1j.tar.gz: OK (sha256: aaf2fcb575cdf6491b98ab4829abf78a3dec8402b8b81efc8f23c00d443981bf)
  2631. >>> dnsmasq 2.84 Downloading
  2632. --2023-07-13 11:14:47-- http://thekelleys.org.uk/dnsmasq/dnsmasq-2.84.tar.xz
  2633. Resolving thekelleys.org.uk (thekelleys.org.uk)... 85.119.82.65, 2001:ba8:1f1:f049::2
  2634. Connecting to thekelleys.org.uk (thekelleys.org.uk)|85.119.82.65|:80... connected.
  2635. HTTP request sent, awaiting response... 301 Moved Permanently
  2636. Location: https://thekelleys.org.uk/dnsmasq/dnsmasq-2.84.tar.xz [following]
  2637. --2023-07-13 11:14:47-- https://thekelleys.org.uk/dnsmasq/dnsmasq-2.84.tar.xz
  2638. Connecting to thekelleys.org.uk (thekelleys.org.uk)|85.119.82.65|:443... connected.
  2639. HTTP request sent, awaiting response... 200 OK
  2640. Length: 514216 (502K) [application/x-xz]
  2641. Saving to: '/home/reds/opencn/agency/rootfs/build/.dnsmasq-2.84.tar.xz.l4WWG4/output'
  2642.  
  2643. /home/reds/opencn/agency/rootfs/build/.dnsmas 100%[=================================================================================================>] 502.16K 2.12MB/s in 0.2s
  2644.  
  2645. 2023-07-13 11:14:47 (2.12 MB/s) - '/home/reds/opencn/agency/rootfs/build/.dnsmasq-2.84.tar.xz.l4WWG4/output' saved [514216/514216]
  2646.  
  2647. dnsmasq-2.84.tar.xz: OK (sha256: 603195c64b73137609b07e1024ae0b37f652b2f5fe467dce66985b3d1850050c)
  2648. >>> e2tools 0.0.16.4 Downloading
  2649. --2023-07-13 11:14:48-- https://github.com/ndim/e2tools/archive/v0.0.16.4/e2tools-0.0.16.4.tar.gz
  2650. Resolving github.com (github.com)... 140.82.121.4
  2651. Connecting to github.com (github.com)|140.82.121.4|:443... connected.
  2652. HTTP request sent, awaiting response... 302 Found
  2653. Location: https://codeload.github.com/ndim/e2tools/tar.gz/refs/tags/v0.0.16.4 [following]
  2654. --2023-07-13 11:14:48-- https://codeload.github.com/ndim/e2tools/tar.gz/refs/tags/v0.0.16.4
  2655. Resolving codeload.github.com (codeload.github.com)... 140.82.121.9
  2656. Connecting to codeload.github.com (codeload.github.com)|140.82.121.9|:443... connected.
  2657. HTTP request sent, awaiting response... 200 OK
  2658. Length: unspecified [application/x-gzip]
  2659. Saving to: '/home/reds/opencn/agency/rootfs/build/.e2tools-0.0.16.4.tar.gz.9RRJJG/output'
  2660.  
  2661. /home/reds/opencn/agency/rootfs/build/.e2tool [ <=> ] 68.79K --.-KB/s in 0.07s
  2662.  
  2663. 2023-07-13 11:14:48 (980 KB/s) - '/home/reds/opencn/agency/rootfs/build/.e2tools-0.0.16.4.tar.gz.9RRJJG/output' saved [70444]
  2664.  
  2665. e2tools-0.0.16.4.tar.gz: OK (sha256: 1d06ca71f01483ad6d9a514e31466e7d2357b3465de2813d667a8b2f9638544e)
  2666. >>> htop 3.0.5 Downloading
  2667. --2023-07-13 11:14:48-- https://dl.bintray.com/htop/source/htop-3.0.5.tar.gz
  2668. Resolving dl.bintray.com (dl.bintray.com)... failed: Name or service not known.
  2669. wget: unable to resolve host address 'dl.bintray.com'
  2670. --2023-07-13 11:14:48-- http://sources.buildroot.net/htop/htop-3.0.5.tar.gz
  2671. Resolving sources.buildroot.net (sources.buildroot.net)... 172.67.72.56, 104.26.1.37, 104.26.0.37, ...
  2672. Connecting to sources.buildroot.net (sources.buildroot.net)|172.67.72.56|:80... connected.
  2673. HTTP request sent, awaiting response... 200 OK
  2674. Length: 360867 (352K) [application/x-gtar-compressed]
  2675. Saving to: '/home/reds/opencn/agency/rootfs/build/.htop-3.0.5.tar.gz.fMDbcH/output'
  2676.  
  2677. /home/reds/opencn/agency/rootfs/build/.htop-3 100%[=================================================================================================>] 352.41K 1003KB/s in 0.4s
  2678.  
  2679. 2023-07-13 11:14:50 (1003 KB/s) - '/home/reds/opencn/agency/rootfs/build/.htop-3.0.5.tar.gz.fMDbcH/output' saved [360867/360867]
  2680.  
  2681. htop-3.0.5.tar.gz: OK (sha256: 19535f8f01ac08be2df880c93c9cedfc50fa92320d48e3ef92a30b6edc4d1917)
  2682. >>> openssh 8.4p1 Downloading
  2683. --2023-07-13 11:14:50-- http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.4p1.tar.gz
  2684. Resolving ftp.openbsd.org (ftp.openbsd.org)... 199.185.178.81
  2685. Connecting to ftp.openbsd.org (ftp.openbsd.org)|199.185.178.81|:80... connected.
  2686. HTTP request sent, awaiting response... 200 OK
  2687. Length: 1742201 (1.7M) [text/plain]
  2688. Saving to: '/home/reds/opencn/agency/rootfs/build/.openssh-8.4p1.tar.gz.BWrJYh/output'
  2689.  
  2690. /home/reds/opencn/agency/rootfs/build/.openss 100%[=================================================================================================>] 1.66M 1.01MB/s in 1.6s
  2691.  
  2692. 2023-07-13 11:14:52 (1.01 MB/s) - '/home/reds/opencn/agency/rootfs/build/.openssh-8.4p1.tar.gz.BWrJYh/output' saved [1742201/1742201]
  2693.  
  2694. openssh-8.4p1.tar.gz: OK (sha256: 5a01d22e407eb1c05ba8a8f7c654d388a13e9f226e4ed33bd38748dafa1d2b24)
  2695. >>> grub2 2.04 Downloading
  2696. --2023-07-13 11:14:52-- http://ftp.gnu.org/gnu/grub/grub-2.04.tar.xz
  2697. Resolving ftp.gnu.org (ftp.gnu.org)... 209.51.188.20, 2001:470:142:3::b
  2698. Connecting to ftp.gnu.org (ftp.gnu.org)|209.51.188.20|:80... connected.
  2699. HTTP request sent, awaiting response... 200 OK
  2700. Length: 6393864 (6.1M) [application/x-xz]
  2701. Saving to: '/home/reds/opencn/agency/rootfs/build/.grub-2.04.tar.xz.WHJTal/output'
  2702.  
  2703. /home/reds/opencn/agency/rootfs/build/.grub-2 100%[=================================================================================================>] 6.10M 2.11MB/s in 2.9s
  2704.  
  2705. 2023-07-13 11:14:55 (2.11 MB/s) - '/home/reds/opencn/agency/rootfs/build/.grub-2.04.tar.xz.WHJTal/output' saved [6393864/6393864]
  2706.  
  2707. grub-2.04.tar.xz: OK (sha256: e5292496995ad42dabe843a0192cf2a2c502e7ffcc7479398232b10a472df77d)
  2708. grub-2.04.tar.xz: OK (sha256: e5292496995ad42dabe843a0192cf2a2c502e7ffcc7479398232b10a472df77d)
  2709. make -C ../../buildroot BR2_EXTERNAL_DIRS="../agency/rootfs" O=/home/reds/opencn/agency/rootfs/.
  2710. >>> host-m4 1.4.19 Extracting
  2711. xzcat /home/reds/opencn/buildroot/dl/m4/m4-1.4.19.tar.xz | tar --strip-components=1 -C /home/reds/opencn/agency/rootfs/build/host-m4-1.4.19 -xf -
  2712. >>> host-m4 1.4.19 Patching
  2713. >>> host-m4 1.4.19 Updating config.sub and config.guess
  2714. for file in config.guess config.sub; do for i in $(find /home/reds/opencn/agency/rootfs/build/host-m4-1.4.19 -name $file); do cp support/gnuconfig/$file $i; done; done
  2715. >>> host-m4 1.4.19 Patching libtool
  2716. >>> host-m4 1.4.19 Configuring
  2717. (cd /home/reds/opencn/agency/rootfs/build/host-m4-1.4.19/ && rm -rf config.cache; PATH="/home/reds/opencn/agency/rootfs/host/bin:/home/reds/opencn/agency/rootfs/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/toolchains/arm-none-linux-gnueabihf_9.2.1/bin:/opt/toolchains/aarch64-none-linux-gnu_10.2/bin" PKG_CONFIG="/home/reds/opencn/agency/rootfs/host/bin/pkg-config" PKG_CONFIG_SYSROOT_DIR="/" PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 PKG_CONFIG_LIBDIR="/home/reds/opencn/agency/rootfs/host/lib/pkgconfig:/home/reds/opencn/agency/rootfs/host/share/pkgconfig" AR="/usr/bin/ar" AS="/usr/bin/as" LD="/usr/bin/ld" NM="/usr/bin/nm" CC="/usr/bin/gcc" GCC="/usr/bin/gcc" CXX="/usr/bin/g++" CPP="/usr/bin/cpp" OBJCOPY="/usr/bin/objcopy" RANLIB="/usr/bin/ranlib" CPPFLAGS="-I/home/reds/opencn/agency/rootfs/host/include" CFLAGS="-O2 -I/home/reds/opencn/agency/rootfs/host/include" CXXFLAGS="-O2 -I/home/reds/opencn/agency/rootfs/host/include" LDFLAGS="-L/home/reds/opencn/agency/rootfs/host/lib -Wl,-rpath,/home/reds/opencn/agency/rootfs/host/lib" INTLTOOL_PERL=/usr/bin/perl CFLAGS="-O2 -I/home/reds/opencn/agency/rootfs/host/include" LDFLAGS="-L/home/reds/opencn/agency/rootfs/host/lib -Wl,-rpath,/home/reds/opencn/agency/rootfs/host/lib" CONFIG_SITE=/dev/null ./configure --prefix="/home/reds/opencn/agency/rootfs/host" --sysconfdir="/home/reds/opencn/agency/rootfs/host/etc" --localstatedir="/home/reds/opencn/agency/rootfs/host/var" --enable-shared --disable-static --disable-gtk-doc --disable-gtk-doc-html --disable-doc --disable-docs --disable-documentation --disable-debug --with-xmlto=no --with-fop=no --disable-nls --disable-dependency-tracking )
  2718. configure: WARNING: unrecognized options: --enable-shared, --disable-static, --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --disable-debug, --with-xmlto, --with-fop
  2719. checking for a BSD-compatible install... /usr/bin/install -c
  2720. checking whether build environment is sane... yes
  2721. checking for a race-free mkdir -p... /usr/bin/mkdir -p
  2722. checking for gawk... gawk
  2723. checking whether make sets $(MAKE)... yes
  2724. checking whether make supports nested variables... yes
  2725. checking whether make supports nested variables... (cached) yes
  2726. checking for gcc... /usr/bin/gcc
  2727. checking whether the C compiler works... yes
  2728. checking for C compiler default output file name... a.out
  2729. checking for suffix of executables...
  2730. checking whether we are cross compiling... no
  2731. checking for suffix of object files... o
  2732. checking whether the compiler supports GNU C... yes
  2733. checking whether /usr/bin/gcc accepts -g... yes
  2734. checking for /usr/bin/gcc option to enable C11 features... none needed
  2735. checking whether /usr/bin/gcc understands -c and -o together... yes
  2736. checking whether the compiler is clang... no
  2737. checking for compiler option needed when checking for declarations... none
  2738. checking whether make supports the include directive... yes (GNU style)
  2739. checking dependency style of /usr/bin/gcc... none
  2740. checking for stdio.h... yes
  2741. checking for stdlib.h... yes
  2742. checking for string.h... yes
  2743. checking for inttypes.h... yes
  2744. checking for stdint.h... yes
  2745. checking for strings.h... yes
  2746. checking for sys/stat.h... yes
  2747. checking for sys/types.h... yes
  2748. checking for unistd.h... yes
  2749. checking for wchar.h... yes
  2750. checking for minix/config.h... no
  2751. checking for pthread.h... yes
  2752. checking for sys/param.h... yes
  2753. checking for sys/socket.h... yes
  2754. checking for dirent.h... yes
  2755. checking for stdio_ext.h... yes
  2756. checking for getopt.h... yes
  2757. checking for sys/cdefs.h... yes
  2758. checking for threads.h... yes
  2759. checking for iconv.h... yes
  2760. checking for limits.h... yes
  2761. checking for crtdefs.h... no
  2762. checking for wctype.h... yes
  2763. checking for langinfo.h... yes
  2764. checking for xlocale.h... no
  2765. checking for math.h... yes
  2766. checking for sys/mman.h... yes
  2767. checking for malloc.h... yes
  2768. checking for spawn.h... yes
  2769. checking for sys/time.h... yes
  2770. checking for sys/random.h... yes
  2771. checking for sys/wait.h... yes
  2772. checking for features.h... yes
  2773. checking for arpa/inet.h... yes
  2774. checking for semaphore.h... yes
  2775. checking for netdb.h... yes
  2776. checking for netinet/in.h... yes
  2777. checking for sys/select.h... yes
  2778. checking for sys/ioctl.h... yes
  2779. checking for sys/uio.h... yes
  2780. checking whether it is safe to define __EXTENSIONS__... yes
  2781. checking whether _XOPEN_SOURCE should be defined... no
  2782. checking build system type... x86_64-pc-linux-gnu
  2783. checking host system type... x86_64-pc-linux-gnu
  2784. checking how to run the C preprocessor... /usr/bin/cpp
  2785. checking for grep that handles long lines and -e... /usr/bin/grep
  2786. checking for egrep... /usr/bin/grep -E
  2787. checking for Minix Amsterdam compiler... no
  2788. checking for ar... /usr/bin/ar
  2789. checking whether to use C++... no
  2790. checking for _LARGEFILE_SOURCE value needed for large files... no
  2791. checking for special C compiler options needed for large files... no
  2792. checking for _FILE_OFFSET_BITS value needed for large files... no
  2793. configure: autobuild project... GNU M4
  2794. configure: autobuild revision... 1.4.19
  2795. configure: autobuild hostname... 065f739822c4
  2796. configure: autobuild timestamp... 20230713T091503Z
  2797. checking for unsigned long long int... yes
  2798. checking for long long int... yes
  2799. checking for unsigned long long int... (cached) yes
  2800. checking for size_t... yes
  2801. checking for working alloca.h... yes
  2802. checking for alloca... yes
  2803. checking for inline... inline
  2804. checking whether <wchar.h> uses 'inline' correctly... yes
  2805. checking for btowc... yes
  2806. checking for canonicalize_file_name... yes
  2807. checking for faccessat... yes
  2808. checking for realpath... yes
  2809. checking for lstat... yes
  2810. checking for _set_invalid_parameter_handler... no
  2811. checking for fchdir... yes
  2812. checking for fcntl... yes
  2813. checking for symlink... yes
  2814. checking for fdopendir... yes
  2815. checking for mempcpy... yes
  2816. checking for fpurge... no
  2817. checking for __fpurge... yes
  2818. checking for __freadahead... no
  2819. checking for __freading... yes
  2820. checking for fstatat... yes
  2821. checking for getdtablesize... yes
  2822. checking for getprogname... no
  2823. checking for getexecname... no
  2824. checking for getrandom... yes
  2825. checking for iswcntrl... yes
  2826. checking for iswblank... yes
  2827. checking for uselocale... yes
  2828. checking for newlocale... yes
  2829. checking for duplocale... yes
  2830. checking for freelocale... yes
  2831. checking for mbsinit... yes
  2832. checking for mbrtowc... yes
  2833. checking for mbslen... no
  2834. checking for mprotect... yes
  2835. checking for mkstemp... yes
  2836. checking for nl_langinfo... yes
  2837. checking for openat... yes
  2838. checking for pipe... yes
  2839. checking for pipe2... yes
  2840. checking for posix_spawn_file_actions_addchdir_np... yes
  2841. checking for posix_spawn_file_actions_addchdir... no
  2842. checking for readlink... yes
  2843. checking for isblank... yes
  2844. checking for iswctype... yes
  2845. checking for link... yes
  2846. checking for secure_getenv... yes
  2847. checking for getuid... yes
  2848. checking for geteuid... yes
  2849. checking for getgid... yes
  2850. checking for getegid... yes
  2851. checking for sigaction... yes
  2852. checking for sigaltstack... yes
  2853. checking for siginterrupt... yes
  2854. checking for setrlimit... yes
  2855. checking for getrlimit... yes
  2856. checking for snprintf... yes
  2857. checking for strerror_r... yes
  2858. checking for __xpg_strerror_r... yes
  2859. checking for strndup... yes
  2860. checking for vasnprintf... no
  2861. checking for wcrtomb... yes
  2862. checking for wcwidth... yes
  2863. checking for explicit_bzero... yes
  2864. checking for memset_s... no
  2865. checking for ftruncate... yes
  2866. checking for gettimeofday... yes
  2867. checking for pthread_sigmask... no
  2868. checking for setenv... yes
  2869. checking for sleep... yes
  2870. checking for catgets... yes
  2871. checking for shutdown... yes
  2872. checking for mquery... no
  2873. checking for pstat_getprocvm... no
  2874. checking for wctob... yes
  2875. checking for nl_langinfo and CODESET... yes
  2876. checking for a traditional french locale... none
  2877. checking whether malloc is ptrdiff_t safe... yes
  2878. checking whether malloc, realloc, calloc set errno on failure... yes
  2879. checking whether lstat correctly handles trailing slash... yes
  2880. checking whether // is distinct from /... no
  2881. checking whether realpath works... yes
  2882. checking for getcwd... yes
  2883. checking whether the preprocessor supports include_next... yes
  2884. checking whether source code line length is unlimited... yes
  2885. checking for /usr/bin/gcc options needed to detect all undeclared functions... none needed
  2886. checking if environ is properly declared... yes
  2887. checking for complete errno.h... yes
  2888. checking whether strerror_r is declared... yes
  2889. checking whether strerror_r returns char *... yes
  2890. checking for mode_t... yes
  2891. checking for sig_atomic_t... yes
  2892. checking whether fchdir is declared... yes
  2893. checking for working fcntl.h... yes
  2894. checking for pid_t... yes
  2895. checking for eaccess... yes
  2896. checking whether frexp() can be used without linking with libm... yes
  2897. checking whether alarm is declared... yes
  2898. checking whether long double and double are the same... no
  2899. checking whether stdin defaults to large file offsets... yes
  2900. checking whether fseeko is declared... yes
  2901. checking for fseeko... yes
  2902. checking whether fflush works on input streams... no
  2903. checking whether stat file-mode macros are broken... no
  2904. checking for C/C++ restrict keyword... __restrict__
  2905. checking for nlink_t... yes
  2906. checking whether ftello is declared... yes
  2907. checking whether ungetc works on arbitrary bytes... yes
  2908. checking for ftello... yes
  2909. checking whether ftello works... yes
  2910. checking whether getcwd (NULL, 0) allocates memory for result... yes
  2911. checking for getcwd with POSIX signature... yes
  2912. checking whether getcwd is declared... yes
  2913. checking whether getdtablesize is declared... yes
  2914. checking for getopt.h... (cached) yes
  2915. checking for getopt_long_only... yes
  2916. checking whether getopt is POSIX compatible... yes
  2917. checking for working GNU getopt function... yes
  2918. checking for working GNU getopt_long function... yes
  2919. checking for pthread.h... (cached) yes
  2920. checking whether POSIX threads API is available... yes
  2921. checking whether setlocale (LC_ALL, NULL) is multithread-safe... yes
  2922. checking whether setlocale (category, NULL) is multithread-safe... yes
  2923. checking host CPU and C ABI... x86_64
  2924. checking for ld... /usr/bin/ld
  2925. checking if the linker (/usr/bin/ld) is GNU ld... yes
  2926. checking for shared library run path origin... done
  2927. checking 32-bit host C ABI... no
  2928. checking for ELF binary format... yes
  2929. checking for the common suffixes of directories in the library search path... lib,lib,lib64
  2930. checking for iconv... yes
  2931. checking for working iconv... yes
  2932. checking whether iconv is compatible with its POSIX signature... yes
  2933. checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc.... yes
  2934. checking for wint_t... yes
  2935. checking whether wint_t is large enough... yes
  2936. checking whether the compiler produces multi-arch binaries... no
  2937. checking whether stdint.h conforms to C99... yes
  2938. checking whether stdint.h works without ISO C predefines... yes
  2939. checking whether stdint.h has UINTMAX_WIDTH etc.... yes
  2940. checking where to find the exponent in a 'double'... word 1 bit 20
  2941. checking where to find the exponent in a 'float'... word 0 bit 23
  2942. checking whether byte ordering is bigendian... no
  2943. checking whether iswcntrl works... yes
  2944. checking for towlower... yes
  2945. checking for wctype_t... yes
  2946. checking for wctrans_t... yes
  2947. checking for a traditional japanese locale... none
  2948. checking for a french Unicode locale... none
  2949. checking for a transitional chinese locale... none
  2950. checking whether langinfo.h defines CODESET... yes
  2951. checking whether langinfo.h defines T_FMT_AMPM... yes
  2952. checking whether langinfo.h defines ALTMON_1... yes
  2953. checking whether langinfo.h defines ERA... yes
  2954. checking whether langinfo.h defines YESEXPR... yes
  2955. checking for wchar_t... yes
  2956. checking for good max_align_t... yes
  2957. checking whether NULL can be used in arbitrary expressions... yes
  2958. checking whether locale.h defines locale_t... yes
  2959. checking whether locale.h conforms to POSIX:2001... yes
  2960. checking whether struct lconv is properly defined... yes
  2961. checking for LC_MESSAGES... yes
  2962. checking whether uselocale works... yes
  2963. checking for fake locale system (OpenBSD)... no
  2964. checking for Solaris 11.4 locale system... no
  2965. checking for getlocalename_l... no
  2966. checking for CFPreferencesCopyAppValue... no
  2967. checking for CFLocaleCopyPreferredLanguages... no
  2968. checking for multithread API to use... none
  2969. checking for a sed that does not truncate output... /usr/bin/sed
  2970. checking whether malloc (0) returns nonnull... yes
  2971. checking whether NAN macro works... yes
  2972. checking whether HUGE_VAL works... yes
  2973. checking for mbstate_t... yes
  2974. checking for mmap... yes
  2975. checking for MAP_ANONYMOUS... yes
  2976. checking whether memchr works... yes
  2977. checking whether memrchr is declared... yes
  2978. checking whether <limits.h> defines MIN and MAX... no
  2979. checking whether <sys/param.h> defines MIN and MAX... yes
  2980. checking for O_CLOEXEC... yes
  2981. checking for promoted mode_t type... mode_t
  2982. checking for library containing posix_spawn... none required
  2983. checking for posix_spawn... yes
  2984. checking whether posix_spawn is declared... yes
  2985. checking whether posix_spawn works... yes
  2986. checking whether posix_spawn rejects scripts without shebang... yes
  2987. checking whether posix_spawnp rejects scripts without shebang... yes
  2988. checking whether posix_spawnattr_setschedpolicy is supported... yes
  2989. checking whether posix_spawnattr_setschedparam is supported... yes
  2990. checking for sigset_t... yes
  2991. checking for SIGPIPE... yes
  2992. checking for sched.h... yes
  2993. checking for struct sched_param... yes
  2994. checking for uid_t in sys/types.h... yes
  2995. checking for volatile sig_atomic_t... yes
  2996. checking for sighandler_t... yes
  2997. checking whether C symbols are prefixed with underscore at the linker level... no
  2998. checking whether snprintf returns a byte count as in C99... yes
  2999. checking whether snprintf is declared... yes
  3000. checking for posix_spawnattr_t... yes
  3001. checking for posix_spawn_file_actions_t... yes
  3002. checking for stdbool.h that conforms to C99... yes
  3003. checking for _Bool... yes
  3004. checking whether fcloseall is declared... yes
  3005. checking which flavor of printf attribute matches inttypes macros... system
  3006. checking whether ecvt is declared... yes
  3007. checking whether fcvt is declared... yes
  3008. checking whether gcvt is declared... yes
  3009. checking whether strdup is declared... yes
  3010. checking whether strerror(0) succeeds... yes
  3011. checking for strerror_r with POSIX signature... no
  3012. checking whether __xpg_strerror_r works... yes
  3013. checking whether strndup is declared... yes
  3014. checking whether strnlen is declared... yes
  3015. checking whether strsignal is declared... yes
  3016. checking whether strstr works... yes
  3017. checking whether ldexp() can be used without linking with libm... yes
  3018. checking for struct timespec in <time.h>... yes
  3019. checking for TIME_UTC in <time.h>... yes
  3020. checking whether execvpe is declared... yes
  3021. checking whether clearerr_unlocked is declared... yes
  3022. checking whether feof_unlocked is declared... yes
  3023. checking whether ferror_unlocked is declared... yes
  3024. checking whether fflush_unlocked is declared... yes
  3025. checking whether fgets_unlocked is declared... yes
  3026. checking whether fputc_unlocked is declared... yes
  3027. checking whether fputs_unlocked is declared... yes
  3028. checking whether fread_unlocked is declared... yes
  3029. checking whether fwrite_unlocked is declared... yes
  3030. checking whether getc_unlocked is declared... yes
  3031. checking whether getchar_unlocked is declared... yes
  3032. checking whether putc_unlocked is declared... yes
  3033. checking whether putchar_unlocked is declared... yes
  3034. checking for inttypes.h... yes
  3035. checking for stdint.h... yes
  3036. checking for intmax_t... yes
  3037. checking whether snprintf truncates the result as in C99... yes
  3038. checking for snprintf... (cached) yes
  3039. checking for strnlen... yes
  3040. checking for wcslen... yes
  3041. checking for wcsnlen... yes
  3042. checking for mbrtowc... (cached) yes
  3043. checking for wcrtomb... (cached) yes
  3044. checking whether _snprintf is declared... no
  3045. checking whether printf supports size specifiers as in C99... yes
  3046. checking whether printf supports 'long double' arguments... yes
  3047. checking whether printf supports infinite 'double' arguments... yes
  3048. checking whether printf supports infinite 'long double' arguments... yes
  3049. checking whether printf supports the 'a' and 'A' directives... yes
  3050. checking whether printf supports the 'F' directive... yes
  3051. checking whether printf supports the 'n' directive... no
  3052. checking whether printf supports the 'ls' directive... yes
  3053. checking whether printf supports the grouping flag... yes
  3054. checking whether printf supports the left-adjust flag correctly... yes
  3055. checking whether printf supports the zero flag correctly... yes
  3056. checking whether printf supports large precisions... yes
  3057. checking whether printf survives out-of-memory conditions... yes
  3058. checking whether wcsdup is declared... yes
  3059. checking whether <sys/socket.h> is self-contained... yes
  3060. checking for shutdown... (cached) yes
  3061. checking whether <sys/socket.h> defines the SHUT_* macros... yes
  3062. checking for struct sockaddr_storage... yes
  3063. checking for sa_family_t... yes
  3064. checking for struct sockaddr_storage.ss_family... yes
  3065. checking for library needed for semaphore functions... none
  3066. checking for struct timeval... yes
  3067. checking for wide-enough struct timeval.tv_sec member... yes
  3068. checking for IPv4 sockets... yes
  3069. checking for IPv6 sockets... yes
  3070. checking for off_t... yes
  3071. checking whether INT32_MAX < INTMAX_MAX... yes
  3072. checking whether INT64_MAX == LONG_MAX... yes
  3073. checking whether UINT32_MAX < UINTMAX_MAX... yes
  3074. checking whether UINT64_MAX == ULONG_MAX... yes
  3075. checking whether <sys/select.h> is self-contained... yes
  3076. checking for library containing setsockopt... none needed
  3077. checking whether select supports a 0 argument... yes
  3078. checking whether select detects invalid fds... yes
  3079. checking for pthread_t... yes
  3080. checking for pthread_spinlock_t... yes
  3081. checking for PTHREAD_CREATE_DETACHED... yes
  3082. checking for PTHREAD_MUTEX_RECURSIVE... yes
  3083. checking for PTHREAD_MUTEX_ROBUST... yes
  3084. checking for PTHREAD_PROCESS_SHARED... yes
  3085. checking whether setenv is declared... yes
  3086. checking for search.h... yes
  3087. checking for tsearch... yes
  3088. checking whether <sys/ioctl.h> declares ioctl... yes
  3089. checking whether unsetenv is declared... yes
  3090. checking for alloca as a compiler built-in... yes
  3091. checking whether to enable assertions... yes
  3092. checking whether btowc(0) is correct... yes
  3093. checking whether btowc(EOF) is correct... guessing yes
  3094. checking for __builtin_expect... yes
  3095. checking whether calloc (0, n) and calloc (n, 0) return nonnull... yes
  3096. checking whether this system supports file names of any length... no
  3097. checking for library containing clock_gettime... none required
  3098. checking for clock_gettime... yes
  3099. checking for clock_settime... yes
  3100. checking for closedir... yes
  3101. checking for d_ino member in directory struct... yes
  3102. checking for dirfd... yes
  3103. checking whether dirfd is declared... yes
  3104. checking whether dirfd is a macro... no
  3105. checking whether // is distinct from /... (cached) no
  3106. checking whether dup works... yes
  3107. checking whether dup2 works... yes
  3108. checking for error_at_line... yes
  3109. checking whether fflush works on input streams... (cached) no
  3110. checking whether fcntl handles F_DUPFD correctly... yes
  3111. checking whether fcntl understands F_DUPFD_CLOEXEC... needs runtime check
  3112. checking whether fdopendir is declared... yes
  3113. checking whether fdopendir works... yes
  3114. checking whether fflush works on input streams... (cached) no
  3115. checking for flexible array member... yes
  3116. checking whether conversion from 'int' to 'long double' works... yes
  3117. checking whether fopen recognizes a trailing slash... yes
  3118. checking whether fopen supports the mode character 'x'... yes
  3119. checking whether fopen supports the mode character 'e'... yes
  3120. checking for __fpending... yes
  3121. checking whether __fpending is declared... yes
  3122. checking whether fpurge is declared... no
  3123. checking whether free is known to preserve errno... no
  3124. checking whether frexp works... yes
  3125. checking whether frexpl is declared... yes
  3126. checking whether frexpl() can be used without linking with libm... yes
  3127. checking whether frexpl works... yes
  3128. checking for fseeko... (cached) yes
  3129. checking whether fflush works on input streams... (cached) no
  3130. checking for _fseeki64... no
  3131. checking whether fstatat (..., 0) works... yes
  3132. checking for ftello... (cached) yes
  3133. checking whether ftello works... (cached) yes
  3134. checking whether getcwd handles long file names properly... yes
  3135. checking for getpagesize... yes
  3136. checking whether getcwd succeeds when 4k < cwd_length < 16k... yes
  3137. checking whether getdtablesize works... yes
  3138. checking for getpagesize... (cached) yes
  3139. checking whether getpagesize is declared... yes
  3140. checking whether program_invocation_name is declared... yes
  3141. checking whether program_invocation_short_name is declared... yes
  3142. checking whether __argv is declared... no
  3143. checking whether getrandom is compatible with its GNU+BSD signature... yes
  3144. checking whether the compiler generally respects inline... yes
  3145. checking whether isnan(double) can be used without linking with libm... yes
  3146. checking whether isnan(float) can be used without linking with libm... yes
  3147. checking whether isnan(float) works... yes
  3148. checking whether isnan(long double) can be used without linking with libm... yes
  3149. checking whether isnanl works... yes
  3150. checking whether iswblank is declared... yes
  3151. checking whether iswdigit is ISO C compliant... guessing yes
  3152. checking whether iswxdigit is ISO C compliant... guessing yes
  3153. checking whether the compiler supports the __inline keyword... yes
  3154. checking whether lseek detects pipes... yes
  3155. checking whether malloc (0) returns nonnull... (cached) yes
  3156. checking whether mbrtowc handles incomplete characters... guessing yes
  3157. checking whether mbrtowc works as well as mbtowc... guessing yes
  3158. checking whether mbrtowc handles a NULL pwc argument... guessing yes
  3159. checking whether mbrtowc handles a NULL string argument... guessing yes
  3160. checking whether mbrtowc has a correct return value... guessing yes
  3161. checking whether mbrtowc returns 0 when parsing a NUL character... guessing yes
  3162. checking whether mbrtowc stores incomplete characters... guessing no
  3163. checking whether mbrtowc works on empty input... yes
  3164. checking whether the C locale is free of encoding errors... no
  3165. checking whether mbrtowc handles incomplete characters... (cached) guessing yes
  3166. checking whether mbrtowc works as well as mbtowc... (cached) guessing yes
  3167. checking for mbtowc... yes
  3168. checking for mempcpy... (cached) yes
  3169. checking for memrchr... yes
  3170. checking whether mkdir handles trailing slash... yes
  3171. checking whether mkdir handles trailing dot... yes
  3172. checking for mkdtemp... yes
  3173. checking for working mkstemp... yes
  3174. checking whether YESEXPR works... yes
  3175. checking for obstacks that work with any size object... no
  3176. checking whether open recognizes a trailing slash... yes
  3177. checking for opendir... yes
  3178. checking whether posix_spawn_file_actions_addclose works... yes
  3179. checking whether posix_spawn_file_actions_adddup2 works... yes
  3180. checking whether posix_spawn_file_actions_addopen works... yes
  3181. checking whether frexp works... (cached) yes
  3182. checking whether ldexp can be used without linking with libm... (cached) yes
  3183. checking whether frexpl() can be used without linking with libm... (cached) yes
  3184. checking whether frexpl works... (cached) yes
  3185. checking whether frexpl is declared... (cached) yes
  3186. checking whether ldexpl() can be used without linking with libm... yes
  3187. checking whether ldexpl works... yes
  3188. checking whether ldexpl is declared... yes
  3189. checking whether program_invocation_name is declared... (cached) yes
  3190. checking whether program_invocation_short_name is declared... (cached) yes
  3191. checking for raise... yes
  3192. checking for sigprocmask... yes
  3193. checking for rawmemchr... yes
  3194. checking for readdir... yes
  3195. checking whether readlink signature is correct... yes
  3196. checking whether readlink handles trailing slash correctly... yes
  3197. checking whether readlink truncates results correctly... yes
  3198. checking whether realloc (0, 0) returns nonnull... yes
  3199. checking for reallocarray... yes
  3200. checking for working re_compile_pattern... no
  3201. checking for libintl.h... yes
  3202. checking whether isblank is declared... yes
  3203. checking whether rename honors trailing slash on destination... yes
  3204. checking whether rename honors trailing slash on source... yes
  3205. checking whether rename manages hard links correctly... yes
  3206. checking whether rename manages existing destinations correctly... yes
  3207. checking for rewinddir... yes
  3208. checking whether rmdir works... yes
  3209. checking whether setlocale supports the C locale... yes
  3210. checking whether setlocale (LC_ALL, NULL) is multithread-safe... (cached) yes
  3211. checking whether setlocale (category, NULL) is multithread-safe... (cached) yes
  3212. checking for struct sigaction.sa_sigaction... yes
  3213. checking for signbit macro... yes
  3214. checking for signbit compiler built-ins... yes
  3215. checking for sigprocmask... (cached) yes
  3216. checking for stack direction... grows down
  3217. checking for stack_t... yes
  3218. checking for working sigaltstack... yes
  3219. checking for correct stack_t interpretation... yes
  3220. checking for stdint.h... (cached) yes
  3221. checking for SIZE_MAX... yes
  3222. checking for snprintf... (cached) yes
  3223. checking whether snprintf respects a size of 1... yes
  3224. checking whether printf supports POSIX/XSI format strings with positions... yes
  3225. checking for ssize_t... yes
  3226. checking whether stat handles trailing slashes on files... yes
  3227. checking for struct stat.st_atim.tv_nsec... yes
  3228. checking whether struct stat.st_atim is of type struct timespec... yes
  3229. checking for struct stat.st_birthtimespec.tv_nsec... no
  3230. checking for struct stat.st_birthtimensec... no
  3231. checking for struct stat.st_birthtim.tv_nsec... no
  3232. checking for working stdalign.h... yes
  3233. checking for va_copy... yes
  3234. checking for stpcpy... yes
  3235. checking for strchrnul... yes
  3236. checking whether strchrnul works... yes
  3237. checking for working strerror function... yes
  3238. checking for working strndup... yes
  3239. checking for working strnlen... yes
  3240. checking for strsignal... yes
  3241. checking whether strsignal always returns a string... yes
  3242. checking whether strstr works in linear time... yes
  3243. checking whether strstr works... (cached) yes
  3244. checking whether strtod obeys C99... yes
  3245. checking for sys/single_threaded.h... no
  3246. checking for ptrdiff_t... yes
  3247. checking for vasprintf... yes
  3248. checking for vasprintf... (cached) yes
  3249. checking for ptrdiff_t... (cached) yes
  3250. checking for waitid... yes
  3251. checking whether mbrtowc handles incomplete characters... (cached) guessing yes
  3252. checking whether mbrtowc works as well as mbtowc... (cached) guessing yes
  3253. checking whether wcrtomb works in the C locale... yes
  3254. checking whether wcrtomb return value is correct... guessing yes
  3255. checking whether wcwidth is declared... yes
  3256. checking whether wcwidth works reasonably in UTF-8 locales... yes
  3257. checking for stdint.h... (cached) yes
  3258. checking for a traditional french locale... (cached) none
  3259. checking for a french Unicode locale... (cached) none
  3260. checking for a traditional french locale... (cached) none
  3261. checking for a turkish Unicode locale... none
  3262. checking whether open recognizes a trailing slash... (cached) yes
  3263. checking for close_range... no
  3264. checking whether fdopen sets errno... yes
  3265. checking whether freopen works on closed fds... yes
  3266. checking for gettimeofday with POSIX signature... yes
  3267. checking for library containing inet_pton... none required
  3268. checking whether inet_pton is declared... yes
  3269. checking whether byte ordering is bigendian... (cached) no
  3270. checking for ioctl... yes
  3271. checking for ioctl with POSIX signature... no
  3272. checking where to find the exponent in a 'double'... (cached) word 1 bit 20
  3273. checking where to find the exponent in a 'float'... (cached) word 0 bit 23
  3274. checking where to find the exponent in a 'long double'... word 2 bit 0
  3275. checking for a traditional french locale... (cached) none
  3276. checking for a french Unicode locale... (cached) none
  3277. checking for a traditional japanese locale... (cached) none
  3278. checking for a transitional chinese locale... (cached) none
  3279. checking for a traditional french locale... (cached) none
  3280. checking for a french Unicode locale... (cached) none
  3281. checking for a traditional japanese locale... (cached) none
  3282. checking for a transitional chinese locale... (cached) none
  3283. checking whether link obeys POSIX... yes
  3284. checking for a traditional french locale... (cached) none
  3285. checking for a french Unicode locale... (cached) none
  3286. checking for a traditional japanese locale... (cached) none
  3287. checking for a transitional chinese locale... (cached) none
  3288. checking for a french Unicode locale... (cached) none
  3289. checking for a french Unicode locale... (cached) none
  3290. checking for a transitional chinese locale... (cached) none
  3291. checking for library containing nanosleep... none required
  3292. checking for working nanosleep... no (mishandles large arguments)
  3293. checking whether <netinet/in.h> is self-contained... yes
  3294. checking for a traditional french locale... (cached) none
  3295. checking for a french Unicode locale... (cached) none
  3296. checking whether perror matches strerror... yes
  3297. checking whether pthread_create exists as a global function... yes
  3298. checking whether pthread_sigmask is a macro... no
  3299. checking for putenv compatible with GNU and SVID... yes
  3300. checking whether sched_yield is declared... yes
  3301. checking whether select supports a 0 argument... (cached) yes
  3302. checking whether select detects invalid fds... (cached) yes
  3303. checking whether setenv validates arguments... yes
  3304. checking for a traditional french locale... (cached) none
  3305. checking for a french Unicode locale... (cached) none
  3306. checking for a traditional japanese locale... (cached) none
  3307. checking for a transitional chinese locale... (cached) none
  3308. checking whether sleep is declared... yes
  3309. checking for working sleep... yes
  3310. checking for socklen_t... yes
  3311. checking for a traditional french locale... (cached) none
  3312. checking for a french Unicode locale... (cached) none
  3313. checking whether symlink handles trailing slash correctly... yes
  3314. checking for unsetenv... yes
  3315. checking for unsetenv() return type... int
  3316. checking whether unsetenv obeys POSIX... yes
  3317. checking for a traditional french locale... (cached) none
  3318. checking for a french Unicode locale... (cached) none
  3319. checking for a traditional japanese locale... (cached) none
  3320. checking for a transitional chinese locale... (cached) none
  3321. checking whether wctob works... guessing yes
  3322. checking whether wctob is declared... yes
  3323. checking whether an open file can be renamed... yes
  3324. checking if changeword is wanted... no
  3325. checking which shell to use for syscmd... /bin/sh
  3326. checking if malloc debugging is wanted... no
  3327. checking whether NLS is requested... no
  3328. checking for msgfmt... /home/reds/opencn/agency/rootfs/host/bin/msgfmt
  3329. checking for gmsgfmt... /home/reds/opencn/agency/rootfs/host/bin/msgfmt
  3330. checking for xgettext... /home/reds/opencn/agency/rootfs/host/bin/xgettext
  3331. checking for msgmerge... /home/reds/opencn/agency/rootfs/host/bin/msgmerge
  3332. checking for CFPreferencesCopyAppValue... (cached) no
  3333. checking for CFLocaleCopyPreferredLanguages... (cached) no
  3334. checking whether to use NLS... no
  3335. checking that generated files are newer than configure... done
  3336. configure: creating ./config.status
  3337. config.status: creating Makefile
  3338. config.status: creating doc/Makefile
  3339. config.status: creating lib/Makefile
  3340. config.status: creating po/Makefile.in
  3341. config.status: creating src/Makefile
  3342. config.status: creating tests/Makefile
  3343. config.status: creating checks/Makefile
  3344. config.status: creating examples/Makefile
  3345. config.status: creating lib/config.h
  3346. config.status: executing depfiles commands
  3347. config.status: executing stamp-h commands
  3348. config.status: executing po-directories commands
  3349. config.status: creating po/POTFILES
  3350. config.status: creating po/Makefile
  3351. configure: WARNING: unrecognized options: --enable-shared, --disable-static, --disable-gtk-doc, --disable-gtk-doc-html, --disable-doc, --disable-docs, --disable-documentation, --disable-debug, --with-xmlto, --with-fop
  3352. >>> host-m4 1.4.19 Building
  3353. PATH="/home/reds/opencn/agency/rootfs/host/bin:/home/reds/opencn/agency/rootfs/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/toolchains/arm-none-linux-gnueabihf_9.2.1/bin:/opt/toolchains/aarch64-none-linux-gnu_10.2/bin" PKG_CONFIG="/home/reds/opencn/agency/rootfs/host/bin/pkg-config" PKG_CONFIG_SYSROOT_DIR="/" PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 PKG_CONFIG_LIBDIR="/home/reds/opencn/agency/rootfs/host/lib/pkgconfig:/home/reds/opencn/agency/rootfs/host/share/pkgconfig" /usr/bin/make -j8 -C /home/reds/opencn/agency/rootfs/build/host-m4-1.4.19/
  3354. /usr/bin/make all-recursive
  3355. Making all in .
  3356. make[4]: Nothing to be done for 'all-am'.
  3357. Making all in examples
  3358. make[4]: Nothing to be done for 'all'.
  3359. Making all in lib
  3360. GEN alloca.h
  3361. GEN configmake.h
  3362. GEN dirent.h
  3363. GEN fcntl.h
  3364. GEN iconv.h
  3365. GEN inttypes.h
  3366. GEN langinfo.h
  3367. GEN limits.h
  3368. GEN locale.h
  3369. GEN math.h
  3370. GEN sched.h
  3371. GEN signal.h
  3372. GEN sigsegv.h
  3373. GEN spawn.h
  3374. GEN stdio.h
  3375. GEN stdlib.h
  3376. GEN string.h
  3377. GEN sys/random.h
  3378. GEN sys/stat.h
  3379. GEN sys/types.h
  3380. GEN time.h
  3381. GEN sys/wait.h
  3382. GEN unistd.h
  3383. GEN unistr.h
  3384. GEN unitypes.h
  3385. GEN uniwidth.h
  3386. GEN wchar.h
  3387. GEN wctype.h
  3388. /usr/bin/make all-am
  3389. CC asyncsafe-spin.o
  3390. CC openat-proc.o
  3391. CC gl_avltree_oset.o
  3392. CC basename-lgpl.o
  3393. CC binary-io.o
  3394. CC bitrotate.o
  3395. CC c-ctype.o
  3396. CC c-stack.o
  3397. CC c-strcasecmp.o
  3398. CC c-strncasecmp.o
  3399. CC canonicalize.o
  3400. CC clean-temp.o
  3401. CC clean-temp-simple.o
  3402. CC cloexec.o
  3403. CC close-stream.o
  3404. CC closein.o
  3405. CC closeout.o
  3406. CC concat-filename.o
  3407. CC dirname.o
  3408. CC basename.o
  3409. CC dirname-lgpl.o
  3410. CC stripslash.o
  3411. CC execute.o
  3412. CC exitfail.o
  3413. CC fatal-signal.o
  3414. CC fd-hook.o
  3415. CC fd-safer-flag.o
  3416. CC dup-safer-flag.o
  3417. CC file-set.o
  3418. CC filenamecat.o
  3419. CC filenamecat-lgpl.o
  3420. CC findprog-in.o
  3421. CC fopen-safer.o
  3422. CC freading.o
  3423. CC getprogname.o
  3424. CC hard-locale.o
  3425. CC hash.o
  3426. CC hash-pjw.o
  3427. CC hash-triple-simple.o
  3428. CC gl_linked_list.o
  3429. CC gl_linkedhash_list.o
  3430. CC gl_list.o
  3431. CC localcharset.o
  3432. CC localename.o
  3433. CC localename-table.o
  3434. CC malloca.o
  3435. CC math.o
  3436. CC mbchar.o
  3437. CC mbiter.o
  3438. CC mbslen.o
  3439. CC mbsstr.o
  3440. CC mbuiter.o
  3441. CC memchr2.o
  3442. CC openat-die.o
  3443. CC gl_oset.o
  3444. CC pipe2.o
  3445. CC pipe2-safer.o
  3446. CC printf-frexp.o
  3447. CC printf-frexpl.o
  3448. CC progname.o
  3449. CC propername.o
  3450. CC quotearg.o
  3451. CC save-cwd.o
  3452. CC malloc/scratch_buffer_dupfree.o
  3453. CC malloc/scratch_buffer_grow.o
  3454. CC malloc/scratch_buffer_grow_preserve.o
  3455. CC malloc/scratch_buffer_set_array_size.o
  3456. CC setlocale_null.o
  3457. CC sig-handler.o
  3458. CC sigsegv.o
  3459. CC stackvma.o
  3460. CC spawn-pipe.o
  3461. CC stat-time.o
  3462. CC mkstemp-safer.o
  3463. CC striconv.o
  3464. CC strnlen1.o
  3465. CC tempname.o
  3466. CC glthread/threadlib.o
  3467. CC glthread/tls.o
  3468. CC tmpdir.o
  3469. CC trim.o
  3470. CC unistd.o
  3471. CC dup-safer.o
  3472. CC fd-safer.o
  3473. CC pipe-safer.o
  3474. CC verror.o
  3475. CC version-etc.o
  3476. CC version-etc-fsf.o
  3477. CC wait-process.o
  3478. CC wctype-h.o
  3479. CC xmalloc.o
  3480. CC xalloc-die.o
  3481. CC gl_xlist.o
  3482. CC xmalloca.o
  3483. CC gl_xoset.o
  3484. CC xprintf.o
  3485. CC xsize.o
  3486. CC xstriconv.o
  3487. CC xstrndup.o
  3488. CC xasprintf.o
  3489. CC xvasprintf.o
  3490. CC asnprintf.o
  3491. CC asprintf.o
  3492. CC chdir-long.o
  3493. CC fclose.o
  3494. CC fcntl.o
  3495. CC fflush.o
  3496. CC fpurge.o
  3497. CC freadahead.o
  3498. CC free.o
  3499. CC fseek.o
  3500. CC fseeko.o
  3501. CC mbrtowc.o
  3502. CC obstack.o
  3503. CC printf-args.o
  3504. CC printf-parse.o
  3505. CC regex.o
  3506. CC spawn_faction_addchdir.o
  3507. CC vasnprintf.o
  3508. CC vasprintf.o
  3509. CC malloc/dynarray_at_failure.o
  3510. CC malloc/dynarray_emplace_enlarge.o
  3511. CC malloc/dynarray_finalize.o
  3512. CC malloc/dynarray_resize.o
  3513. CC malloc/dynarray_resize_clear.o
  3514. CC glthread/lock.o
  3515. CC unistr/u8-mbtoucr.o
  3516. CC unistr/u8-uctomb.o
  3517. CC unistr/u8-uctomb-aux.o
  3518. CC uniwidth/width.o
  3519. AR libm4.a
  3520. Making all in src
  3521. CC m4.o
  3522. CC builtin.o
  3523. CC debug.o
  3524. CC eval.o
  3525. CC format.o
  3526. CC freeze.o
  3527. CC input.o
  3528. CC macro.o
  3529. CC output.o
  3530. CC path.o
  3531. CC symtab.o
  3532. CCLD m4
  3533. Making all in doc
  3534. make[4]: Nothing to be done for 'all'.
  3535. Making all in checks
  3536. make[4]: Nothing to be done for 'all'.
  3537. Making all in po
  3538. make[4]: Nothing to be done for 'all'.
  3539. Making all in tests
  3540. GEN ctype.h
  3541. GEN test-posix_spawn-dup2-stdout.sh
  3542. GEN test-posix_spawn-dup2-stdin.sh
  3543. GEN pthread.h
  3544. GEN arpa/inet.h
  3545. GEN sys/select.h
  3546. GEN sys/ioctl.h
  3547. GEN sys/socket.h
  3548. GEN sys/time.h
  3549. GEN sys/uio.h
  3550. /usr/bin/make all-recursive
  3551. Making all in .
  3552. CC locale.o
  3553. CC gl_array_list.o
  3554. CC gl_array_oset.o
  3555. CC findprog.o
  3556. CC imaxtostr.o
  3557. CC inttostr.o
  3558. CC offtostr.o
  3559. CC uinttostr.o
  3560. CC umaxtostr.o
  3561. CC read-file.o
  3562. CC sockets.o
  3563. CC sys_socket.o
  3564. CC vma-iter.o
  3565. CC xconcat-filename.o
  3566. CC ioctl.o
  3567. CC nanosleep.o
  3568. CC pthread_sigmask.o
  3569. CC strerror_r.o
  3570. CC test-localcharset.o
  3571. CC glthread/thread.o
  3572. AR libtests.a
  3573. CCLD current-locale
  3574. CCLD test-localcharset
  3575. >>> host-m4 1.4.19 Installing to host directory
  3576. PATH="/home/reds/opencn/agency/rootfs/host/bin:/home/reds/opencn/agency/rootfs/host/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/toolchains/arm-none-linux-gnueabihf_9.2.1/bin:/opt/toolchains/aarch64-none-linux-gnu_10.2/bin" PKG_CONFIG="/home/reds/opencn/agency/rootfs/host/bin/pkg-config" PKG_CONFIG_SYSROOT_DIR="/" PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 PKG_CONFIG_LIBDIR="/home/reds/opencn/agency/rootfs/host/lib/pkgconfig:/home/reds/opencn/agency/rootfs/host/share/pkgconfig" /usr/bin/make -j8 install -C /home/reds/opencn/agency/rootfs/build/host-m4-1.4.19/
  3577. /usr/bin/make install-recursive
  3578. Making install in .
  3579. make[5]: Nothing to be done for 'install-exec-am'.
  3580. make[5]: Nothing to be done for 'install-data-am'.
  3581. Making install in examples
  3582. make[5]: Nothing to be done for 'install-exec-am'.
  3583. make[5]: Nothing to be done for 'install-data-am'.
  3584. Making install in lib
  3585. /usr/bin/make install-am
  3586. make[6]: Nothing to be done for 'install-exec-am'.
  3587. make[6]: Nothing to be done for 'install-data-am'.
  3588. Making install in src
  3589. make[5]: Nothing to be done for 'install-data-am'.
  3590. /usr/bin/mkdir -p '/home/reds/opencn/agency/rootfs/host/bin'
  3591. /usr/bin/install -c m4 '/home/reds/opencn/agency/rootfs/host/bin'
  3592. Making install in doc
  3593. make[5]: Nothing to be done for 'install-exec-am'.
  3594. /usr/bin/mkdir -p '/home/reds/opencn/agency/rootfs/host/share/man/man1'
  3595. /usr/bin/mkdir -p '/home/reds/opencn/agency/rootfs/host/share/info'
  3596. /usr/bin/install -c -m 644 ./m4.1 '/home/reds/opencn/agency/rootfs/host/share/man/man1'
  3597. /usr/bin/install -c -m 644 ./m4.info ./m4.info-1 ./m4.info-2 '/home/reds/opencn/agency/rootfs/host/share/info'
  3598. Making install in checks
  3599. make[5]: Nothing to be done for 'install-exec-am'.
  3600. make[5]: Nothing to be done for 'install-data-am'.
  3601. Making install in po
  3602. if test "m4" = "gettext-tools"; then \
  3603. /usr/bin/mkdir -p /home/reds/opencn/agency/rootfs/host/share/gettext/po; \
  3604. for file in Makefile.in.in remove-potcdate.sin quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot Makevars.template; do \
  3605. /usr/bin/install -c -m 644 ./$file \
  3606. /home/reds/opencn/agency/rootfs/host/share/gettext/po/$file; \
  3607. done; \
  3608. for file in Makevars; do \
  3609. rm -f /home/reds/opencn/agency/rootfs/host/share/gettext/po/$file; \
  3610. done; \
  3611. else \
  3612. : ; \
  3613. fi
  3614. Making install in tests
  3615. /usr/bin/make install-recursive
  3616. Making install in .
  3617. make[7]: Nothing to be done for 'install-exec-am'.
  3618. make[7]: Nothing to be done for 'install-data-am'.
  3619. ***
  3620. *** ERROR: package host-m4 installs executables without proper RPATH:
  3621. *** /home/reds/opencn/agency/rootfs/host/bin/tic
  3622. *** /home/reds/opencn/agency/rootfs/host/bin/setfacl
  3623. *** /home/reds/opencn/agency/rootfs/host/bin/attr
  3624. *** /home/reds/opencn/agency/rootfs/host/bin/xmlwf
  3625. *** /home/reds/opencn/agency/rootfs/host/bin/tabs
  3626. *** /home/reds/opencn/agency/rootfs/host/bin/getfacl
  3627. *** /home/reds/opencn/agency/rootfs/host/bin/capnpc-capnp
  3628. *** /home/reds/opencn/agency/rootfs/host/bin/tset
  3629. *** /home/reds/opencn/agency/rootfs/host/bin/capnp
  3630. *** /home/reds/opencn/agency/rootfs/host/bin/capnpc-c++
  3631. *** /home/reds/opencn/agency/rootfs/host/bin/tput
  3632. *** /home/reds/opencn/agency/rootfs/host/bin/python3.9
  3633. *** /home/reds/opencn/agency/rootfs/host/bin/chacl
  3634. *** /home/reds/opencn/agency/rootfs/host/bin/clear
  3635. *** /home/reds/opencn/agency/rootfs/host/bin/infocmp
  3636. *** /home/reds/opencn/agency/rootfs/host/bin/pkgconf
  3637. *** /home/reds/opencn/agency/rootfs/host/bin/toe
  3638. make[1]: *** [package/pkg-generic.mk:262: /home/reds/opencn/agency/rootfs/build/host-m4-1.4.19/.stamp_host_installed] Error 1
  3639. make: *** [Makefile:15: _all] Error 2
  3640. ➜ docker git:(master) ✗
  3641.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement