search for: bitbake_build

Displaying 5 results from an estimated 5 matches for "bitbake_build".

2014 May 12
2
[PATCH] isohybrid: fix overflow on 32 bit system
...ype being off_t. > > -hpa Hi hpa, Thanks for your reply. In utils/Makefile, -D_FILE_OFFSET_BITS=64 is added to CFLAGS. isohybrid is compiled with -D_FILE_OFFSET_BITS=64 but it still fails to handle the large offset. make[3]: Entering directory `/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/work/i686-linux/syslinux-native/6.01-r0/syslinux-6.01/bios/utils' gcc -isystem/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/sysroots/i686-linux/usr/include -O2 -pipe -Wp,-MT,isohybrid.o,-MMD,./.isohybrid.o.d -W -Wall -Wstrict-prototypes -Os -fomit-frame-pointer *-D_FILE_OFFS...
2014 May 13
2
[PATCH] isohybrid: fix overflow on 32 bit system
...gt;> In utils/Makefile, -D_FILE_OFFSET_BITS=64 is added to CFLAGS. isohybrid >> >> is compiled with -D_FILE_OFFSET_BITS=64 but it still fails to handle >> the >> large offset. >> >> make[3]: Entering directory >> `/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/work/i686-linux/syslinux-native/6.01-r0/syslinux-6.01/bios/utils' >> gcc >> -isystem/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/sysroots/i686-linux/usr/include >> >> -O2 -pipe -Wp,-MT,isohybrid.o,-MMD,./.isohybrid.o.d -W -Wall >> -Wstrict-prototy...
2014 May 12
0
[PATCH] isohybrid: fix overflow on 32 bit system
...t; >Thanks for your reply. > >In utils/Makefile, -D_FILE_OFFSET_BITS=64 is added to CFLAGS. isohybrid > >is compiled with -D_FILE_OFFSET_BITS=64 but it still fails to handle >the >large offset. > >make[3]: Entering directory >`/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/work/i686-linux/syslinux-native/6.01-r0/syslinux-6.01/bios/utils' >gcc >-isystem/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/sysroots/i686-linux/usr/include > >-O2 -pipe -Wp,-MT,isohybrid.o,-MMD,./.isohybrid.o.d -W -Wall >-Wstrict-prototypes -Os -fomit-frame-p...
2014 May 13
0
[PATCH] isohybrid: fix overflow on 32 bit system
...FFSET_BITS=64 is added to CFLAGS. >isohybrid >>> >>> is compiled with -D_FILE_OFFSET_BITS=64 but it still fails to handle >>> the >>> large offset. >>> >>> make[3]: Entering directory >>> >`/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/work/i686-linux/syslinux-native/6.01-r0/syslinux-6.01/bios/utils' >>> gcc >>> >-isystem/home/neil/wrlinux/builds/install-x86-64/bitbake_build/tmp/sysroots/i686-linux/usr/include >>> >>> -O2 -pipe -Wp,-MT,isohybrid.o,-MMD,./.isohybrid.o.d -W -Wall >&...
2014 May 12
4
[PATCH] isohybrid: fix overflow on 32 bit system
When call isohybrid with option '-u', it overflows on a 32 bits host. It seeks to 512 bytes before the end of the image to install gpt header. If the size of image is larger than LONG_MAX, it overflows fseek() and cause error: isohybrid: wrlinux-image-x86-64-20140505110100.iso: seek error - 8: Invalid argument Check the offset and call fseek() multi-times if offset is too large.