**** BEGIN LOGGING AT Fri Jan 11 02:59:57 2019 Jan 11 03:50:41 what is codeload? Jan 11 05:56:37 nbd: ping Jan 11 05:56:58 nbd: https://bugs.openwrt.org/index.php?do=details&task_id=2054 - can you make sense of it? Jan 11 09:39:17 'lo ldir Jan 11 09:40:01 jow: greetings Jan 11 12:03:36 to refresh my memory: if support for a particular board requires weird defaults in uci, where do i put that? thanks Jan 11 12:04:57 uci-defaults Jan 11 12:12:24 target/linux/*/base-files/etc/uci-defaults/ appears to contain scripts, though Jan 11 12:14:10 and the scripts are target-specific rather than board-specific Jan 11 12:15:13 the defaults that the board needs are for non-led gpio's Jan 11 12:19:18 jow: is there a better place for those? Jan 11 12:20:59 keep in mind that usually all boards share the smae base-files scripts Jan 11 12:21:11 or rather the same rootfs Jan 11 12:21:39 so your script needs to be subtarget or target-wide and check at runtime if its on the correct board Jan 11 12:22:35 i'm not even sure yet that uci is the best way to do this, but any other way i can think of seems even worse Jan 11 12:32:16 Hey guys, I am in need of modifying u-boot. Yesterday I was directed here to the build_dir directory. I was looking around there and there are different u-boot directories and not all of them have the make nconfig option Jan 11 12:32:29 Can someone point me in the right direction? Jan 11 12:39:21 rex_victor: package/boot/uboot-* Jan 11 12:40:00 jow: There I only see the patches Jan 11 12:45:28 rex_victor: that's the way the build system works, it downloads the u-boot sources, extracts them to build_dir/target-*/.../u-boot-*/, then applies those patches to the extracted sources - so any persistent changes you want to do need to e expressed as patches; if you just one to change and build stuff once you can directly modify the sources in build_dir/ Jan 11 12:47:02 KanjiMonster: I need the menuconfig. Jan 11 12:47:25 then you need to run it within the extracted u-boot sources Jan 11 12:47:37 I have 4 different u-boot folders Jan 11 12:47:47 yes, one for each u-boot build target Jan 11 12:48:20 so one folder is u-boot-vgv7510kw22_brn Jan 11 12:48:42 that's the u-boot for the vgv7510kw22_brn device Jan 11 12:48:43 this folder contaions one folder: u-boot-2013.10 Jan 11 12:49:34 and inside this folder running make nconfig says mips_4KC-gcc not found and no target menuconfig Jan 11 12:49:52 *nconfig=menuconfig Jan 11 12:54:35 KanjiMonster: I'd really appreciate any help here. The wiki is not up to date for this device and the u-boot image from the download page and the one from the build root don't really work Jan 11 12:55:13 So I'm hoping by compiling uboot with appropriate settings, it will work Jan 11 12:55:35 jow:ping Jan 11 12:57:15 dedeckeh: pong Jan 11 12:58:01 rex_victor: no idea where this error comes from, seems to be an issue with the old u-boot version. I had no issues running menuconfig with the mvebu u-boot, which uses 2016.03, but I can see the error message when running menuconfig with the older lantiq u-boot Jan 11 12:58:13 jow:uclient installs wget in /bin while busybox installs it in /usr/bin Jan 11 12:58:31 shouldn't that be aligned ? Jan 11 12:58:45 dedeckeh: the decision predates alternatives support Jan 11 12:59:00 before that was available, we used /usr/bin to override /bin Jan 11 12:59:14 ok so there's no objection to align this and work with ALTERNATIVES Jan 11 12:59:15 now that alternatives are available, aligning it makes sense Jan 11 12:59:23 KanjiMonster: So have you any idea, what I could do? Jan 11 13:00:02 rex_victor: you probably need to point CROSS_COMPILE to the openwrt toolchain Jan 11 13:00:26 as an export? Jan 11 13:01:10 rex_victor: uboot's ./arch/mips/config.mk contains CROSS_COMPILE ?= mips_4KC- Jan 11 13:01:30 rex_victor: means it will try to invoke mips_4KC-gcc, mips_4KC-ld, mips_4KC-nm etc. when no CROSS_COMPILE env var is set Jan 11 13:02:07 rex_victor: you should set it to export CROSS_COMPILE=mips-openwrt-linux-musl- Jan 11 13:02:26 Does it need an absolute path? Jan 11 13:02:32 rex_victor: and make sure that staging_dir/toolchain-mips_24kc_gcc-7.4.0_musl/bin/ (actual path might differ depending on version) is set in PATH Jan 11 13:02:42 ok Jan 11 13:03:01 this assumes hat you compiled at least the toolchain once in your current buildroot Jan 11 13:05:11 jow: KanjiMonster: Ok I did this Jan 11 13:05:28 Now it says no rule for target menuconfig Jan 11 13:05:47 yeah, I have no idea how this old u-boot is supposed to work Jan 11 13:05:55 I can see that as well Jan 11 13:06:47 It seems that lantiq is not included in mainline Jan 11 13:07:10 might be u-boot 2013 didn't include a menuconfig yet Jan 11 13:08:41 What wonders me is that there is also a folder u-boot-2018.03 Jan 11 13:10:47 yeah, menuconfig was added 2014 Jan 11 13:11:32 the new one is just the build dir for the fw_env userspace utilities Jan 11 13:11:44 I see Jan 11 13:12:03 So what were people doing instead of menuconfig in 2013? Jan 11 13:12:47 I guess using a texteditor of their choice to hand write configs Jan 11 13:14:46 Is there any chance I could use a newer version? Jan 11 13:16:31 not really, you would need to port the patches to a newer u-boot version Jan 11 13:16:57 and I doubt that's less work than writing/modifying a config by hand Jan 11 13:23:30 KanjiMonster: I see Jan 11 13:23:51 Where can I find the default config? Jan 11 13:27:04 rex_victor: include/configs/.h Jan 11 13:28:42 KanjiMonster: Thanks! But I'm guessing I won't get ethernet working that way Jan 11 13:31:36 rex_victor: ethernet configuration you'll find in the appropriate board/?/?.c Jan 11 13:34:18 KanjiMonster, jow:Thanks a lot for your time and help! Jan 11 13:43:00 Do you know danielschwierzeck? Jan 11 13:49:15 [Fri 2019-01-11 04:21:39 AM PST] so your script needs to be subtarget or target-wide and check at runtime if its on the correct board <------ why not just use /etc/board.d? Jan 11 14:23:26 DonkeyHotei: you can use this as well Jan 11 14:24:02 its still a series of scripts that run for every board, you need to guard your board specific code in case switches or if conditions Jan 11 15:07:34 build #774 of layerscape/armv8_32b is complete: Success [build successful] Build details are at http://phase1.builds.lede-project.org/builders/layerscape%2Farmv8_32b/builds/774 Jan 11 15:16:09 build #1194 of x86/geode is complete: Success [build successful] Build details are at http://phase1.builds.lede-project.org/builders/x86%2Fgeode/builds/1194 Jan 11 15:29:03 jow: i think opkg crashes when trying to install .ipk-s for a different arch Jan 11 15:29:11 jow: i've to verify that on 18.06 / master with clean repo Jan 11 15:29:16 i noticed that in 17.01 Jan 11 15:29:18 just a heads up Jan 11 15:37:54 build #1155 of kirkwood/generic is complete: Success [build successful] Build details are at http://phase1.builds.lede-project.org/builders/kirkwood%2Fgeneric/builds/1155 Jan 11 17:59:10 hi, i'd like to ask if there is someone here who knows the lantiq chips in fritzbox 73[23]0 Jan 11 18:35:09 Hauke: are you online? Jan 11 18:39:32 rubberduck: yes I am online Jan 11 18:39:57 Hauke: i saw that you were active for the fritzbox 7312 port Jan 11 18:40:58 rubberduck: I do not have such a device Jan 11 18:41:03 what is your question? Jan 11 18:41:10 i have a simmilar problem that was on the 7312 where the ar8030 did not work Jan 11 18:41:30 do you have a link to the problem on the 7312 Jan 11 18:41:51 the LAN Port on the AR8035 (gigabit) appears but the second port on the AR8030 (10/100) does not. Jan 11 18:42:34 i have a 7330 where only one of the two lan ports is working with openwrt and i think that the driver does not recognize the second phy Jan 11 18:42:57 I am not familiar with the old ethernet driver, I think Daniel Golle looked into that Jan 11 18:43:16 with (latest) avm firmware both ports are working so the hardware is ok Jan 11 18:43:24 he changed the MII delays Jan 11 18:43:31 how can i contact Daniel? Jan 11 18:45:00 rubberduck: daniel@makrotopia.org Jan 11 18:45:11 sometimes he is alos in IRC Jan 11 18:45:31 Hauke: what is his native language? Jan 11 18:45:40 German Jan 11 18:46:25 Thank you very much. Jan 11 20:35:53 build #266 of gemini/generic is complete: Failure [failed images] Build details are at http://phase1.builds.lede-project.org/builders/gemini%2Fgeneric/builds/266 blamelist: Rafa? Mi?ecki , Felix Fietkau , Hans Dedecker **** ENDING LOGGING AT Sat Jan 12 02:59:57 2019