Forum Discussion
Altera_Forum
Honored Contributor
21 years agoU-Boot : 'make' problem
Hello, I'm trying to compile a Uboot package in order to upload the .srec file to the NIOSII Cyclone board. My problem is that "make" command terminates with this message : (...)
ma...
Altera_Forum
Honored Contributor
21 years agoMax,
Great to hear things are working :-) > Is the warning important, what CRC is it about ? u-boot maintains environment variables in a flash sector. The default for the Altera Cyclone devkit is at 0x0002_0000 (3rd sector). When u-boot starts up it attempts to read the environment variables from this sector ... but runs a 32-bit CRC to ensure integrity. To get rid of the warning you can simply issue the 'saveenv' command. BUT BE CAREFUL ... if you already have something else saved in that sector, (like uClinux) ... you might want to re-configure the environment address (include/configs/PK1C20.c -- see the CFG_ENV_ADDR macro). Best Regards, --Scott