**** BEGIN LOGGING AT Fri May 17 02:59:57 2019 May 17 04:59:14 xback: for 4.14.120, rm target/linux/generic/pending-4.14/103-MIPS-perf-ath79-Fix-perfcount-IRQ-assignment.patch && http://paste.debian.net/1081839/ build for ath79, lantiq and ipq806x, runtime tested on ipq806x/ nbg6817 May 17 09:45:27 pkgadd: appreciated! **** BEGIN LOGGING AT Fri May 17 11:09:06 2019 May 17 11:45:40 Hi people trying to do a git pull and getting index pack failed. Any one know how I can fix this pleas? May 17 11:46:44 It says fatal pack has 12 unrezolved deltas May 17 11:59:02 Tapper: I have no idea how to fix this, pulling works fine for me. I would probably just delete and reclone the repo (after backup any local changes/files/configs I have) May 17 11:59:22 would that be make clean? May 17 12:00:04 sorry that was at you KanjiMonster May 17 12:02:12 Tapper: no, I mean deleting the whole directory and git clone the repo again May 17 12:02:38 O crap I would like to keep the tool chane if i can May 17 12:02:56 KanjiMonster it takes a long time to build May 17 12:03:30 KanjiMonster could I save the dl dir? May 17 12:03:44 By coppy and pasteing? May 17 12:04:30 dl definitely, whether staging_dir or build_dir would work I have no idea, but it wouldn't hurt to try (might get rebuilt anyway if the buildsystem decides they are older) May 17 12:07:30 jow ping May 17 12:18:25 Tapper: git fetch May 17 12:18:40 Tapper: if that doesn't work then pastebin complete error log May 17 12:19:04 I have rm -r openwrt now lol May 17 12:19:23 It's ok I just have to chill out for a bit well it builds again May 17 12:19:40 Thanks for your help any May 17 12:19:42 way May 17 12:21:42 gch981213: this two patches should fix the mib counters on ar71xx https://git.openwrt.org/81bba7a3 and https://git.openwrt.org/52854647 May 17 12:59:14 I cant use make or update the scripts even after nooking the dir May 17 13:00:50 It says checking cp failed checking git failed checking stat failed May 17 13:01:21 I looked to se if all the packages i need to build openwrt are installed and they are May 17 13:05:15 ynezz: ar8216 isn't used for builtin switch on ar71xx so lots of those devices can be dropped. May 17 13:11:48 gch981213: so `git grep ar8.*platform target/linux/ar71xx/files/arch/mips/ath79/` should be enough to filter just the correct devices? May 17 13:12:47 I've simply added all which were using switch0 LED triggers, which is apparently wrong May 17 13:24:39 gch981213: https://git.openwrt.org/babbc334e7 ? May 17 13:27:34 ynezz: A combine of two strategies should be enough. May 17 13:27:52 yeah, and that's the result May 17 13:35:40 ynezz: machine code of Netgear WNDR3700v4 is actually in mach-wndr4300.c and it should be added back :) May 17 13:42:16 meh :) May 17 13:46:44 * gch981213 is checking every routers ynezz dropped. May 17 13:47:25 * ldir hands gch981213 a brush for all the pieces of plastic May 17 14:04:42 any reason libprocps.so, libprocps.so.7 and libprocps.so.7.1.0 all exists in /usr/lib they are all the exact same file (procps-ng_3.3.15-1_mips_24kc.ipk May 17 14:08:28 ynezz: These needs to be added back: https://paste.ubuntu.com/p/XhG2R9W4Kz/ May 17 14:09:11 I just realized that it isn't a must to provide a platform data to use ar8216. May 17 14:09:11 gch981213: thanks for check May 17 14:17:30 gch981213: https://git.openwrt.org/03a497c3df May 17 14:53:24 xback: have you seen http://phase1.builds.lede-project.org/builders/mpc85xx%2Fp2020/builds/142/steps/images/logs/stdio ? May 17 14:55:09 not sure if it's fixed in 4.14.120 May 17 15:03:38 stintel: yes it is https://cdn.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.14.120 May 17 15:20:46 ynezz: I'm OK with this one :) May 17 17:27:24 Hi guys. Could someone please give an extra hand.... I have a PKG_NAME:=mysql-51 which produce packages: mysql-server-51, libmysqlclient-51, libmysqlclient-r-51 . My other package, say blahblah got DEPENDS:=+libmysqlclient-r-51 . For some reason during compilation buildroot whines: 'Package blahblah is missing dependencies for the following libraries: libmariadb.so.3' and do not even May 17 17:27:24 try to compile my package. Why it do that if my DEPENDS does not specify libmariadb as dependency? What is the best way to resolve this so that new mariadb packages can coexists with old mysql packages? May 17 18:00:15 Ensure blahblah picks libmysql instead of libmariadb. Search for configure options that will let you do that. May 17 18:01:20 thx cotequeiroz , will go that route, btw. how buildroot knows which lib is required before compilation ? May 17 18:01:55 I saw that if I clean buildroot, it picks proper mysql lib May 17 18:02:19 but if some other package compile libmaria before my package then I got the error about missing dependency May 17 18:03:00 Through each package DEPENDS and BUILD_DEPENDS lines. You shouldn't rely on a clean build. Parallel builds will make the order different as well. The best way to do it is to ensure the package picks the right library May 17 18:03:09 ... when they are both present. May 17 18:04:01 but my package DEPENDS says to use libmysqlclient-r-51, not libmaria, but for some reason buildroot whines about libmaria May 17 18:18:11 dk-: the package's actual configure/build does not care about the DEPENDS line, you need to make sure the configure step does not try to autodetect stuff you don't want to use May 17 18:19:11 KanjiMonster thx, will defining BUILD_DEPENDS helps with this? Or will have to override default configure/build step manually? May 17 18:20:40 you will need to override the default configure step (likely modifying the _CONFIGURE_ARGS or so should work - check other packages for examples) May 17 18:21:30 KanjiMonster thx, will do May 17 18:21:47 do you guys know some good tut on how to work with package configuration compilation in general? I have litle experience with picking libs, headers and such stuff by packages, would like to lear more on that May 17 18:22:09 maybe you might be able to recomend some reading ? May 17 18:34:18 KanjiMonster I have some question, if my package picks mariadb instead of mysql, then it means that if I first comile mysql then other packages might pick mysql instead of mariadb, this means that I will have to make configure overrides in every package that uses sql libs... ? Is there a way to compile mysql in such a way that other packages won't pick its headers? May 17 21:41:53 dk-: mysql has been completely replaced by mariadb on many distributions, including OpenWrt **** ENDING LOGGING AT Sat May 18 03:00:11 2019