From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marek Vasut Date: Thu, 11 Feb 2016 13:53:43 +0100 Subject: [U-Boot] Problem with mounting a jffs2 partition on flash. In-Reply-To: References: <201602081712.21810.marex@denx.de> <201602091830.32950.marex@denx.de> <56BB625E.1040207@denx.de> <56BC76E4.6040209@denx.de> Message-ID: <56BC8457.5010702@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 02/11/2016 01:45 PM, Bakhvalov, Denis (Nokia - PL/Wroclaw) wrote: > Hi Marek, > > Here are my build steps: > > denis at DendiMachine:~/WorkSpace/u-boot$ make clean > CLEAN dts/../arch/arm/dts > CLEAN dts > CLEAN examples/standalone > CLEAN tools > CLEAN tools/lib tools/common > CLEAN spl/arch spl/board spl/cmd spl/common spl/drivers spl/dts spl/fs spl/lib spl/u-boot-spl spl/u-boot-spl.bin spl/u-boot-spl.cfg spl/u-boot-spl.dtb spl/u-boot-spl-dtb.bin spl/u-boot-spl.lds spl/u-boot-spl.map spl/u-boot-spl-nodtb.bin spl/u-boot-spl-pad.bin spl/u-boot-spl.sfp > CLEAN u-boot u-boot.bin u-boot.cfg u-boot.dtb u-boot-dtb.bin u-boot-dtb.img u-boot.img u-boot.lds u-boot.map u-boot-nodtb.bin u-boot.srec System.map > denis at DendiMachine:~/WorkSpace/u-boot$ make distclean > CLEAN scripts/basic > CLEAN scripts/kconfig > CLEAN include/config include/generated spl > CLEAN .config .config.old include/autoconf.mk include/autoconf.mk.dep include/config.h > denis at DendiMachine:~/WorkSpace/u-boot$ make clean > denis at DendiMachine:~/WorkSpace/u-boot$ make distclean > denis at DendiMachine:~/WorkSpace/u-boot$ git pull > Already up-to-date. > denis at DendiMachine:~/WorkSpace/u-boot$ git describe > v2016.03-rc1-138-gcc8d698 I see , so you're not building 2016.01 , but 2016.03-rc . > denis at DendiMachine:~/WorkSpace/u-boot$ git status > On branch master > Your branch is up-to-date with 'origin/master'. > > Changes not staged for commit: > (use "git add ..." to update what will be committed) > (use "git checkout -- ..." to discard changes in working directory) > > modified: include/configs/socfpga_arria5_socdk.h // here I only changed SDRAM configuration > > no changes added to commit (use "git add" and/or "git commit -a") > denis at DendiMachine:~/WorkSpace/u-boot$ make socfpga_arria5_defconfig > HOSTCC scripts/basic/fixdep > HOSTCC scripts/kconfig/conf.o > SHIPPED scripts/kconfig/zconf.tab.c > SHIPPED scripts/kconfig/zconf.lex.c > SHIPPED scripts/kconfig/zconf.hash.c > HOSTCC scripts/kconfig/zconf.tab.o > HOSTLD scripts/kconfig/conf > # > # configuration written to .config > # > denis at DendiMachine:~/WorkSpace/u-boot$ make -j9 > > But after compilation I don't have such file. > > I have installed: > - linaro toolchain > - u-boot-tools > - device-tree-compiler OK, there has been a patch applied after 2016.01 which renames the artifacts. I expected it to cause confusion, but I didn't expect it to happen so soon. And the patch is even broken, sigh. Do this after make -j9 as a workaround for the breakage: $ make u-boot-with-spl.sfp And then use the "u-boot-with-spl.sfp" file and place it into the QSPI NOR. I will send a fix for the broken patch. > All env variables should be ok, because in other way it won't compile. > > make u-boot-with-spl-dtb.sfp doesn't work for me because there is no such target in Makefile. > What I'm doing wrong? > I will try to clone sources and build it from the scratch. > > Best regards, > Denis Bakhvalov >