Steven Chamberlain <ste...@pyro.eu.org> writes:

> On 09:30, Christoph Egger wrote:
>> FWIW do we want this uploaded? Can probably do so in the evening (PDT)
>
> Yes please, whenever you have time (upload to experimental of course).

# We must rebuild firmware from sources, per the DFSG
CFLAGS='-D_GNU_SOURCE -isystem /usr/include/freebsd' LDFLAGS='-ldb -lbsd' \
 MAKEFLAGS=-j4 make MACHINE_ARCH=amd64 -DWITHOUT_SOURCELESS 
-DWITHOUT_CLANG_IS_CC WERROR= -DWITHOUT_CTF -DWITHOUT_KERNEL_SYMBOLS         
-DWITHOUT_SSP CC=clang-3.4 -C flavor-10.1-0-amd64/sys/modules/aic7xxx/ firmware
( cd aicasm ; make aicasm )
( cd ahd ; make ahdfirmware )
( cd ahc ; make ahcfirmware )
../aicasm/aicasm  -I../../../cam/scsi     -I../../../dev/aic7xxx                
  -o aic7xxx_seq.h -r aic7xxx_reg.h               -p aic7xxx_reg_print.c        
                          -i ../../../dev/aic7xxx/aic7xxx_osm.h  
../../../dev/aic7xxx/aic7xxx.seq
../aicasm/aicasm  -I../../../cam/scsi     -I../../../dev/aic7xxx                
  -o aic7xxx_seq.h -r aic7xxx_reg.h               -p aic7xxx_reg_print.c        
                          -i ../../../dev/aic7xxx/aic7xxx_osm.h  
../../../dev/aic7xxx/aic7xxx.seq
sh: 1: ../aicasm/aicasm: not found
sh: 1: ../aicasm/aicasm: not found
*** [aic7xxx_seq.h] Error code 127
*** [aic7xxx_reg.h] Error code 127
2 errors
*** [ahcfirmware] Error code 2

I think this should be fixed by

Index: sys/modules/aic7xxx/Makefile
===================================================================
--- sys/modules/aic7xxx/Makefile        (revision 271306)
+++ sys/modules/aic7xxx/Makefile        (working copy)
@@ -8,10 +8,10 @@
 aicasm/aicasm:
        ( cd ${.CURDIR}/aicasm ; ${MAKE} aicasm )
 
-ahdfirmware:
+ahdfirmware: aicasm/aicasm
        ( cd ${.CURDIR}/ahd ; ${MAKE} ahdfirmware )
 
-ahcfirmware:
+ahcfirmware: aicasm/aicasm
        ( cd ${.CURDIR}/ahc ; ${MAKE} ahcfirmware )
 
 cleanfirmware:
   

Christoph


-- 
To UNSUBSCRIBE, email to debian-bsd-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87zje7ukd6....@mitoraj.siccegge.de

Reply via email to