[meta-xilinx] warrior branch

2019-07-09 Thread Oleg K Dzhimiev
Hello, What branch of meta-xilinx is currently compatible with the poky's warrior branch? If none what's the schedule? meta-xilinx, master-next: some layer.confs: > LAYERSERIES_COMPAT_xilinx = "sumo thud" Thanks Best regards, Oleg Dzhimiev Electronics Engineer phone: +1 801 783 x124

Re: [meta-xilinx] macb.c and DT: detect/scan PHY address for a single mdio

2018-07-19 Thread Oleg K Dzhimiev
t really matters. This > might > work on the board with address "3" because that will also respond to the > broadcast address 0. > > > > On 18-07-18 03:12, Oleg K Dzhimiev wrote: > > Hi, > > > > How do I keep the device tree compatible across the boar

[meta-xilinx] macb.c and DT: detect/scan PHY address for a single mdio

2018-07-17 Thread Oleg K Dzhimiev
Hi, How do I keep the device tree compatible across the board revisions if phy addrs are different? We got a new board revision with a different phy reg, where old rev reg == 0x3, new rev reg == 0x0. Here's the DT: > ps7_ethernet_0: ps7-ethernet@e000b000 { > local-mac-address = [00 0e 64 10 00

Re: [meta-xilinx] Add kernel configuration options using configuration fragments in custom layer

2018-04-26 Thread Oleg K Dzhimiev
Hi, Try setting CONFIG_I2C? https://github.com/Xilinx/linux-xlnx/blob/master/drivers/i2c/Kconfig Regards, Oleg On Thu, Apr 26, 2018 at 9:18 AM, Artjom Rjabov wrote: > I am currently trying to modify the kernel configuration (overwrite > default xilinx-linux layer configs)

Re: [meta-xilinx] Patching u-boot by adding custom defconfig files

2018-02-16 Thread Oleg K Dzhimiev
Hi, You could replace patches with the files then (to u-boot-xlnx_2017.1.bbappend) add do_patch_append(){...} in which you do the copying, something like this: > do_patch_append(){ > cp ${WORKDIR}/file1 ${S}/configs/ > cp ${WORKDIR}/file2 ${S}/includes/ } Regards, Oleg --

Re: [meta-xilinx] Busybox options on 2016.2 meta-xilinx/meta-petalinux

2018-01-12 Thread Oleg K Dzhimiev
Hi, "${@plnx_enable_busybox_package('dos2unix',d)}" should output "busybox-dos2unix". So, you probably need to include the package "busybox-dos2unix" to your rootfs image. To make sure the binaries are in that package - they should be in the busybox's workdir/packages-split/busybox-dos2unix/...

Re: [meta-xilinx] Why no support for FSBL?

2017-11-20 Thread Oleg K Dzhimiev
Hi, > FSBL without the need for the SDK dependency You could try this tool - ezynq . And the meta-ezynq . We have developed it a while ago for our custom zynq board - partly because of licensing issues and also to

Re: [meta-xilinx] New Issue with UBI/QSPI in linux-xlnx 2017.3

2017-10-31 Thread Oleg K Dzhimiev
Hi, Those are changes in some driver or the device tree. So, you should start debugging the kernel. You got System.map of the built kernel? Could be the driver that printed "input: gpio-keys"... "UBI attaching" messages look promising. Also, can you boot from SD card? If successful mount UBI

Re: [meta-xilinx] Zynq NAND Flash support in U-Boot SPL

2017-02-21 Thread Oleg K Dzhimiev
Hi, Within my krogoth/yocto build I get several files and it is confusing > which to use. > I have a boot.bin (fsbl/bit/u-boot.elf) I generate/program in SDK and > that works fine. If I'd like to program NAND from within u-boot via say booting from an > SD card, do you have a recommendation for

Re: [meta-xilinx] how to customize rootfs and init script

2016-10-25 Thread Oleg K Dzhimiev
Hi, 1. poky/meta/recipes-graphics/images/core-image-x11.bb - study what recipes it depends on - they are all there in poky/meta/classes/. 2. Remember the discussion about adding python to rootfs? Start with core-image-minimal.bb - then add any package you like. 3. Now to add a some sort of an

Re: [meta-xilinx] How to install mtd-utils on rootfs

2016-07-22 Thread Oleg K Dzhimiev
1. To poky/meta/recipes-core/images/core-image-minimal.bb add: IMAGE_INSTALL_append += " \ mtd-utils \ mtd-utils-misc \ " 2. Or create a core-image-minimal.bbappend file in the meta-xilinx layer and put the text above

[meta-xilinx] Zynq NAND Flash support in U-Boot SPL

2016-03-18 Thread Oleg K Dzhimiev
Hello, We've recently built U-Boot SPL with the NAND flash driver (zynq_nand.c). The work is related to our board (10393). Might be interesting to those who deal with the boards that have NAND flash: http://blog.elphel.com/2016/03/nand-flash-support-for-xilinx-zynq-in-u-boot-spl/ Best regards,