wok-tiny rev 183

linux: fix bundle.S
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 26 17:09:38 2023 +0000 (7 months ago)
parents bbb34fe4904d
children 5d44015ce878
files boot-man/receipt boot-man/stuff/boot-man.asm bootbricks/receipt bootfbird/receipt bootfbird/stuff/fbird.asm bootinvaders/receipt bootinvaders/stuff/invaders.asm bootloader/receipt bootmine/receipt bootpillman/receipt bootpillman/stuff/pillman.asm bootris/receipt bootris/stuff/tetranglix.asm bootsokoban/receipt bootsokoban/stuff/sokoban.asm ctorrent-dnh/receipt dropbear-client-without-zlib/receipt dropbear-client/receipt dropbear-without-zlib/receipt dropbear/receipt fbvnc-auth/receipt fuse/receipt geninitramfs/receipt gpxe/receipt ipxe/receipt isapnptools/receipt jssame/receipt keyboard/receipt lan-config/receipt linux/receipt linux/stuff/bundle.S lpd-config/receipt lpd-spooling-config/receipt manager-fr/receipt manager/receipt memtest/receipt nanochess/receipt ntp-config/receipt p910nd/receipt plop/receipt posixovl/receipt ppp-plugins-atm/receipt ppp/receipt pppdump/receipt pppstats/receipt qemacs/receipt rsh/receipt runcom/receipt tcc-arm/receipt tcc-c67/receipt tcc-common/receipt tcc-win32/receipt tcc-x86_64/receipt tcc/receipt tfttest/receipt udhcpd-config/receipt x86test/receipt
line diff
     1.1 --- a/boot-man/receipt	Sun Sep 24 17:53:05 2023 +0000
     1.2 +++ b/boot-man/receipt	Tue Sep 26 17:09:38 2023 +0000
     1.3 @@ -3,6 +3,7 @@
     1.4  PACKAGE="boot-man"
     1.5  VERSION="slitaz"
     1.6  CATEGORY="games"
     1.7 +GROUP="games"
     1.8  SHORT_DESC="Bootable text pacman game in a 512-byte boot sector."
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="unknown"
     2.1 --- a/boot-man/stuff/boot-man.asm	Sun Sep 24 17:53:05 2023 +0000
     2.2 +++ b/boot-man/stuff/boot-man.asm	Tue Sep 26 17:09:38 2023 +0000
     2.3 @@ -64,6 +64,7 @@
     2.4                                      ; won't run on your machine.
     2.5  
     2.6  start:
     2.7 +    sti                             ; Allow interrupts
     2.8      call copy                       ; Can run as bootsector or DOS COM file
     2.9      
    2.10  moved:
     3.1 --- a/bootbricks/receipt	Sun Sep 24 17:53:05 2023 +0000
     3.2 +++ b/bootbricks/receipt	Tue Sep 26 17:09:38 2023 +0000
     3.3 @@ -3,6 +3,7 @@
     3.4  PACKAGE="bootbricks"
     3.5  VERSION="slitaz"
     3.6  CATEGORY="games"
     3.7 +GROUP="games"
     3.8  SHORT_DESC="Bootable bricks game in a 512-byte boot sector."
     3.9  MAINTAINER="pascal.bellard@slitaz.org"
    3.10  LICENSE="unknown"
     4.1 --- a/bootfbird/receipt	Sun Sep 24 17:53:05 2023 +0000
     4.2 +++ b/bootfbird/receipt	Tue Sep 26 17:09:38 2023 +0000
     4.3 @@ -3,6 +3,7 @@
     4.4  PACKAGE="bootfbird"
     4.5  VERSION="slitaz"
     4.6  CATEGORY="games"
     4.7 +GROUP="games"
     4.8  SHORT_DESC="Bootable flappy bird game in a 512-byte boot sector."
     4.9  MAINTAINER="pascal.bellard@slitaz.org"
    4.10  LICENSE="unknown"
     5.1 --- a/bootfbird/stuff/fbird.asm	Sun Sep 24 17:53:05 2023 +0000
     5.2 +++ b/bootfbird/stuff/fbird.asm	Tue Sep 26 17:09:38 2023 +0000
     5.3 @@ -21,6 +21,7 @@
     5.4          ; Game restart
     5.5          ;
     5.6  fb21:   cld             ; Reset direction flag (so stosw increments registers)
     5.7 +        sti             ; Allow interrupts
     5.8          mov ax,0xb800   ; Point to video segment
     5.9          mov ds,ax       ; Both the source (common access)
    5.10          mov es,ax       ; and target segments
     6.1 --- a/bootinvaders/receipt	Sun Sep 24 17:53:05 2023 +0000
     6.2 +++ b/bootinvaders/receipt	Tue Sep 26 17:09:38 2023 +0000
     6.3 @@ -3,6 +3,7 @@
     6.4  PACKAGE="bootinvaders"
     6.5  VERSION="slitaz"
     6.6  CATEGORY="games"
     6.7 +GROUP="games"
     6.8  SHORT_DESC="Bootable invaders game in a 512-byte boot sector."
     6.9  MAINTAINER="pascal.bellard@slitaz.org"
    6.10  LICENSE="unknown"
     7.1 --- a/bootinvaders/stuff/invaders.asm	Sun Sep 24 17:53:05 2023 +0000
     7.2 +++ b/bootinvaders/stuff/invaders.asm	Tue Sep 26 17:09:38 2023 +0000
     7.3 @@ -66,6 +66,7 @@
     7.4  restart_game:
     7.5          mov ax,0x0013   ; Set mode 0x13 (320x200x256 VGA)
     7.6          int 0x10        ; Call BIOS
     7.7 +        sti             ; Allow interrupts
     7.8          cld
     7.9          mov ax,0xa000   ; Point to screen memory
    7.10          mov ds,ax       ; Both DS...
     8.1 --- a/bootloader/receipt	Sun Sep 24 17:53:05 2023 +0000
     8.2 +++ b/bootloader/receipt	Tue Sep 26 17:09:38 2023 +0000
     8.3 @@ -3,6 +3,7 @@
     8.4  PACKAGE="bootloader"
     8.5  VERSION="1.0"
     8.6  CATEGORY="base-system"
     8.7 +GROUP="misc"
     8.8  SHORT_DESC="Boot floppy creation tool"
     8.9  MAINTAINER="pascal.bellard@slitaz.org"
    8.10  LICENSE="GPL2"
     9.1 --- a/bootmine/receipt	Sun Sep 24 17:53:05 2023 +0000
     9.2 +++ b/bootmine/receipt	Tue Sep 26 17:09:38 2023 +0000
     9.3 @@ -3,6 +3,7 @@
     9.4  PACKAGE="bootmine"
     9.5  VERSION="1.1.1-slitaz"
     9.6  CATEGORY="games"
     9.7 +GROUP="games"
     9.8  SHORT_DESC="Bootable minesweeper game in a 512-byte boot sector."
     9.9  MAINTAINER="pascal.bellard@slitaz.org"
    9.10  LICENSE="MIT"
    10.1 --- a/bootpillman/receipt	Sun Sep 24 17:53:05 2023 +0000
    10.2 +++ b/bootpillman/receipt	Tue Sep 26 17:09:38 2023 +0000
    10.3 @@ -3,6 +3,7 @@
    10.4  PACKAGE="bootpillman"
    10.5  VERSION="slitaz"
    10.6  CATEGORY="games"
    10.7 +GROUP="games"
    10.8  SHORT_DESC="Bootable graphic pacman game in a 512-byte boot sector."
    10.9  MAINTAINER="pascal.bellard@slitaz.org"
   10.10  LICENSE="unknown"
    11.1 --- a/bootpillman/stuff/pillman.asm	Sun Sep 24 17:53:05 2023 +0000
    11.2 +++ b/bootpillman/stuff/pillman.asm	Tue Sep 26 17:09:38 2023 +0000
    11.3 @@ -51,18 +51,18 @@
    11.4  GHOST4_COLOR:   equ 0x34        ; Ghost 4 color
    11.5  
    11.6  old_time:
    11.7 +        sti
    11.8          cld
    11.9 +frame:
   11.10          push cs
   11.11 -frame:
   11.12          pop ss
   11.13  restart:
   11.14 -        xor sp,sp
   11.15 +        mov sp,0xa000           ; Video segment
   11.16 +        mov ds,sp               ; Use as source data segment
   11.17 +        mov es,sp               ; Use as target data segment
   11.18          
   11.19          mov ax,0x0013           ; Set mode 0x13 (320x200x256 VGA)
   11.20          int 0x10                ; Call BIOS
   11.21 -        mov ax,0xa000           ; Video segment
   11.22 -        mov ds,ax               ; Use as source data segment
   11.23 -        mov es,ax               ; Use as target data segment
   11.24          
   11.25          call get_tables
   11.26  tables:
    12.1 --- a/bootris/receipt	Sun Sep 24 17:53:05 2023 +0000
    12.2 +++ b/bootris/receipt	Tue Sep 26 17:09:38 2023 +0000
    12.3 @@ -3,6 +3,7 @@
    12.4  PACKAGE="bootris"
    12.5  VERSION="slitaz"
    12.6  CATEGORY="games"
    12.7 +GROUP="games"
    12.8  SHORT_DESC="Bootable Tetris game in a 512-byte boot sector."
    12.9  MAINTAINER="pascal.bellard@slitaz.org"
   12.10  LICENSE="unknown"
    13.1 --- a/bootris/stuff/tetranglix.asm	Sun Sep 24 17:53:05 2023 +0000
    13.2 +++ b/bootris/stuff/tetranglix.asm	Tue Sep 26 17:09:38 2023 +0000
    13.3 @@ -39,6 +39,9 @@
    13.4      ; Clear direction flag.
    13.5      cld
    13.6  
    13.7 +    ; Allow interrupts
    13.8 +    sti
    13.9 +
   13.10      ; Clear BSS
   13.11      mov di, BSS
   13.12      mov cx, di ;at least BSS_SIZE
   13.13 @@ -190,7 +193,7 @@
   13.14          mov si, OFFSET
   13.15  
   13.16          ; For some reason this doesn't work with BootOS over VirtualBox 5.1.22
   13.17 -    %if 0
   13.18 +    %ifdef READ_PIT
   13.19          mov bx, [0x046C]
   13.20          inc bx
   13.21          inc bx              ; Wait for 2 PIT ticks.
   13.22 @@ -227,7 +230,11 @@
   13.23          in al,(0x40)
   13.24  
   13.25          ; Only 7 tetraminos, index as 1-7.
   13.26 +    %ifdef READ_PIT
   13.27          and ax, 7
   13.28 +    %else
   13.29 +        and al, 7          ; ah = 0
   13.30 +    %endif
   13.31          je .choose_tetramino
   13.32  
   13.33          ; Get the address of the tetramino (in bitmap format).
   13.34 @@ -410,7 +417,7 @@
   13.35  
   13.36          .game_over:             ; Game Over
   13.37              xor ax, ax
   13.38 -            int 0x16            ; wait for and key
   13.39 +            int 0x16            ; wait for a key
   13.40              dec ah
   13.41              jmp exit_game_over
   13.42             
    14.1 --- a/bootsokoban/receipt	Sun Sep 24 17:53:05 2023 +0000
    14.2 +++ b/bootsokoban/receipt	Tue Sep 26 17:09:38 2023 +0000
    14.3 @@ -3,6 +3,7 @@
    14.4  PACKAGE="bootsokoban"
    14.5  VERSION="slitaz"
    14.6  CATEGORY="games"
    14.7 +GROUP="games"
    14.8  SHORT_DESC="Bootable sokoban game in a 512-byte boot sector."
    14.9  MAINTAINER="pascal.bellard@slitaz.org"
   14.10  LICENSE="unknown"
    15.1 --- a/bootsokoban/stuff/sokoban.asm	Sun Sep 24 17:53:05 2023 +0000
    15.2 +++ b/bootsokoban/stuff/sokoban.asm	Tue Sep 26 17:09:38 2023 +0000
    15.3 @@ -8,6 +8,7 @@
    15.4  %define MOVE_COUNT
    15.5  
    15.6  boot:
    15.7 +    sti             ; Allow interrupts
    15.8      ; clear screen (re-set text mode)
    15.9      mov ax, 0x0001  ; text mode 40x25 16 colours
   15.10  %define COLS  40
    16.1 --- a/ctorrent-dnh/receipt	Sun Sep 24 17:53:05 2023 +0000
    16.2 +++ b/ctorrent-dnh/receipt	Tue Sep 26 17:09:38 2023 +0000
    16.3 @@ -3,6 +3,7 @@
    16.4  PACKAGE="ctorrent-dnh"
    16.5  VERSION="3.3.2"
    16.6  CATEGORY="network"
    16.7 +GROUP="network"
    16.8  SHORT_DESC="Command line Bittorrent client."
    16.9  MAINTAINER="pankso@slitaz.org"
   16.10  LICENSE="GPL2"
    17.1 --- a/dropbear-client-without-zlib/receipt	Sun Sep 24 17:53:05 2023 +0000
    17.2 +++ b/dropbear-client-without-zlib/receipt	Tue Sep 26 17:09:38 2023 +0000
    17.3 @@ -4,6 +4,7 @@
    17.4  SOURCE="dropbear"
    17.5  VERSION="0.53"
    17.6  CATEGORY="security"
    17.7 +GROUP="network"
    17.8  SHORT_DESC="Light SSH client without compression support."
    17.9  MAINTAINER="pascal.bellard@slitaz.org"
   17.10  LICENSE="MIT"
    18.1 --- a/dropbear-client/receipt	Sun Sep 24 17:53:05 2023 +0000
    18.2 +++ b/dropbear-client/receipt	Tue Sep 26 17:09:38 2023 +0000
    18.3 @@ -4,6 +4,7 @@
    18.4  SOURCE="dropbear"
    18.5  VERSION="0.53"
    18.6  CATEGORY="security"
    18.7 +GROUP="network"
    18.8  SHORT_DESC="Light SSH client."
    18.9  MAINTAINER="pascal.bellard@slitaz.org"
   18.10  LICENSE="MIT"
    19.1 --- a/dropbear-without-zlib/receipt	Sun Sep 24 17:53:05 2023 +0000
    19.2 +++ b/dropbear-without-zlib/receipt	Tue Sep 26 17:09:38 2023 +0000
    19.3 @@ -4,6 +4,7 @@
    19.4  SOURCE="dropbear"
    19.5  VERSION="0.53"
    19.6  CATEGORY="security"
    19.7 +GROUP="network"
    19.8  SHORT_DESC="Light SSH client and server without compression support."
    19.9  MAINTAINER="pascal.bellard@slitaz.org"
   19.10  LICENSE="MIT"
    20.1 --- a/dropbear/receipt	Sun Sep 24 17:53:05 2023 +0000
    20.2 +++ b/dropbear/receipt	Tue Sep 26 17:09:38 2023 +0000
    20.3 @@ -3,6 +3,7 @@
    20.4  PACKAGE="dropbear"
    20.5  VERSION="0.53"
    20.6  CATEGORY="security"
    20.7 +GROUP="network"
    20.8  SHORT_DESC="Light SSH client and server."
    20.9  MAINTAINER="pascal.bellard@slitaz.org"
   20.10  LICENSE="MIT"
    21.1 --- a/fbvnc-auth/receipt	Sun Sep 24 17:53:05 2023 +0000
    21.2 +++ b/fbvnc-auth/receipt	Tue Sep 26 17:09:38 2023 +0000
    21.3 @@ -3,6 +3,7 @@
    21.4  PACKAGE="fbvnc-auth"
    21.5  VERSION="1.0.2"
    21.6  CATEGORY="network"
    21.7 +GROUP="network"
    21.8  SHORT_DESC="VNC client in frame buffer with authentication."
    21.9  MAINTAINER="pascal.bellard@slitaz.org"
   21.10  LICENSE="GPL2"
    22.1 --- a/fuse/receipt	Sun Sep 24 17:53:05 2023 +0000
    22.2 +++ b/fuse/receipt	Tue Sep 26 17:09:38 2023 +0000
    22.3 @@ -3,6 +3,7 @@
    22.4  PACKAGE="fuse"
    22.5  VERSION="2.8.5"
    22.6  CATEGORY="system-tools"
    22.7 +GROUP="filesystem"
    22.8  SHORT_DESC="Fuse Filsystem in user space."
    22.9  MAINTAINER="pascal.bellard@slitaz.org"
   22.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    23.1 --- a/geninitramfs/receipt	Sun Sep 24 17:53:05 2023 +0000
    23.2 +++ b/geninitramfs/receipt	Tue Sep 26 17:09:38 2023 +0000
    23.3 @@ -3,6 +3,7 @@
    23.4  PACKAGE="geninitramfs"
    23.5  VERSION="1.0"
    23.6  CATEGORY="misc"
    23.7 +GROUP="misc"
    23.8  SHORT_DESC="Utility to build /root/rootfs.gz"
    23.9  MAINTAINER="pascal.bellard@slitaz.org"
   23.10  LICENSE="BSD"
    24.1 --- a/gpxe/receipt	Sun Sep 24 17:53:05 2023 +0000
    24.2 +++ b/gpxe/receipt	Tue Sep 26 17:09:38 2023 +0000
    24.3 @@ -3,6 +3,7 @@
    24.4  PACKAGE="gpxe"
    24.5  VERSION="0.9.3"
    24.6  CATEGORY="network"
    24.7 +GROUP="network"
    24.8  SHORT_DESC="Forward PXE to Slitaz Web Boot"
    24.9  MAINTAINER="pascal.bellard@slitaz.org"
   24.10  LICENSE="GPL"
    25.1 --- a/ipxe/receipt	Sun Sep 24 17:53:05 2023 +0000
    25.2 +++ b/ipxe/receipt	Tue Sep 26 17:09:38 2023 +0000
    25.3 @@ -3,6 +3,7 @@
    25.4  PACKAGE="ipxe"
    25.5  VERSION="1.0.0-20160119"
    25.6  CATEGORY="system-tools"
    25.7 +GROUP="network"
    25.8  SHORT_DESC="Open source network boot firmware (586+)."
    25.9  MAINTAINER="pascal.bellard@slitaz.org"
   25.10  LICENSE="GPL2"
    26.1 --- a/isapnptools/receipt	Sun Sep 24 17:53:05 2023 +0000
    26.2 +++ b/isapnptools/receipt	Tue Sep 26 17:09:38 2023 +0000
    26.3 @@ -3,6 +3,7 @@
    26.4  PACKAGE="isapnptools"
    26.5  VERSION="1.27"
    26.6  CATEGORY="system-tools"
    26.7 +GROUP="system"
    26.8  SHORT_DESC="ISA Plug-And-Play configuration."
    26.9  MAINTAINER="pascal.bellard@slitaz.org"
   26.10  LICENSE="GPL2"
    27.1 --- a/jssame/receipt	Sun Sep 24 17:53:05 2023 +0000
    27.2 +++ b/jssame/receipt	Tue Sep 26 17:09:38 2023 +0000
    27.3 @@ -3,6 +3,7 @@
    27.4  PACKAGE="jssame"
    27.5  VERSION="1.0"
    27.6  CATEGORY="games"
    27.7 +GROUP="games"
    27.8  SHORT_DESC="Same game in javascript"
    27.9  MAINTAINER="pascal.bellard@slitaz.org"
   27.10  LICENSE="BSD"
    28.1 --- a/keyboard/receipt	Sun Sep 24 17:53:05 2023 +0000
    28.2 +++ b/keyboard/receipt	Tue Sep 26 17:09:38 2023 +0000
    28.3 @@ -3,6 +3,7 @@
    28.4  PACKAGE="keyboard"
    28.5  VERSION="1.0"
    28.6  CATEGORY="base-system"
    28.7 +GROUP="system"
    28.8  SHORT_DESC="keyboard, locales and timezone settings"
    28.9  MAINTAINER="pascal.bellard@slitaz.org"
   28.10  LICENSE="GPL2"
    29.1 --- a/lan-config/receipt	Sun Sep 24 17:53:05 2023 +0000
    29.2 +++ b/lan-config/receipt	Tue Sep 26 17:09:38 2023 +0000
    29.3 @@ -3,6 +3,7 @@
    29.4  PACKAGE="lan-config"
    29.5  VERSION="1.0"
    29.6  CATEGORY="network"
    29.7 +GROUP="network"
    29.8  SHORT_DESC="Tiny SliTaz lan ip configuration (2nd ethernet card)"
    29.9  MAINTAINER="pascal.bellard@slitaz.org"
   29.10  LICENSE="BSD"
    30.1 --- a/linux/receipt	Sun Sep 24 17:53:05 2023 +0000
    30.2 +++ b/linux/receipt	Tue Sep 26 17:09:38 2023 +0000
    30.3 @@ -24,7 +24,7 @@
    30.4  {
    30.5  	[ -s $stuff/$1.S ] &&
    30.6  	cc $2 -o $1.o -Wa,-algms=$1.lst -c $stuff/$1.S &&
    30.7 -	objcopy -O binary $1.o $1.bin
    30.8 +	objcopy --only-section=.text -O binary $1.o $1.bin
    30.9  }
   30.10  
   30.11  rootfs()
    31.1 --- a/linux/stuff/bundle.S	Sun Sep 24 17:53:05 2023 +0000
    31.2 +++ b/linux/stuff/bundle.S	Tue Sep 26 17:09:38 2023 +0000
    31.3 @@ -185,11 +185,13 @@
    31.4  	orb	%bl, %bl
    31.5  	jnz	scanboot
    31.6  	decb	%bh
    31.7 +	jmp	boot
    31.8  found:
    31.9 +	cli
   31.10 +	movb	0x1F1+BUFFER, %al	// setup size
   31.11 +boot:
   31.12  	pushw	%ds
   31.13  	pushw	%bx
   31.14 -//	cli
   31.15 -//	movb	0x1F1+BUFFER, %al	// setup size
   31.16  	pushw	%ss
   31.17  	popw	%ds
   31.18  	pushw	%ss
    32.1 --- a/lpd-config/receipt	Sun Sep 24 17:53:05 2023 +0000
    32.2 +++ b/lpd-config/receipt	Tue Sep 26 17:09:38 2023 +0000
    32.3 @@ -3,6 +3,7 @@
    32.4  PACKAGE="lpd-config"
    32.5  VERSION="1.0"
    32.6  CATEGORY="meta"
    32.7 +GROUP="system"
    32.8  SHORT_DESC="Line printer server configuration (without spooling)"
    32.9  MAINTAINER="pascal.bellard@slitaz.org"
   32.10  LICENSE="BSD"
    33.1 --- a/lpd-spooling-config/receipt	Sun Sep 24 17:53:05 2023 +0000
    33.2 +++ b/lpd-spooling-config/receipt	Tue Sep 26 17:09:38 2023 +0000
    33.3 @@ -3,6 +3,7 @@
    33.4  PACKAGE="lpd-spooling-config"
    33.5  VERSION="1.0"
    33.6  CATEGORY="base-system"
    33.7 +GROUP="system"
    33.8  SHORT_DESC="Line printer server configuration"
    33.9  MAINTAINER="pascal.bellard@slitaz.org"
   33.10  LICENSE="BSD"
    34.1 --- a/manager-fr/receipt	Sun Sep 24 17:53:05 2023 +0000
    34.2 +++ b/manager-fr/receipt	Tue Sep 26 17:09:38 2023 +0000
    34.3 @@ -3,6 +3,7 @@
    34.4  PACKAGE="manager-fr"
    34.5  VERSION="1.0"
    34.6  CATEGORY="network"
    34.7 +GROUP="network"
    34.8  SHORT_DESC="Tiny SliTaz Web Manager in french language"
    34.9  MAINTAINER="pascal.bellard@slitaz.org"
   34.10  LICENSE="BSD"
    35.1 --- a/manager/receipt	Sun Sep 24 17:53:05 2023 +0000
    35.2 +++ b/manager/receipt	Tue Sep 26 17:09:38 2023 +0000
    35.3 @@ -3,6 +3,7 @@
    35.4  PACKAGE="manager"
    35.5  VERSION="1.0"
    35.6  CATEGORY="network"
    35.7 +GROUP="network"
    35.8  SHORT_DESC="Tiny SliTaz Web Manager"
    35.9  MAINTAINER="pascal.bellard@slitaz.org"
   35.10  LICENSE="BSD"
    36.1 --- a/memtest/receipt	Sun Sep 24 17:53:05 2023 +0000
    36.2 +++ b/memtest/receipt	Tue Sep 26 17:09:38 2023 +0000
    36.3 @@ -3,6 +3,7 @@
    36.4  PACKAGE="memtest"
    36.5  VERSION="5.01"
    36.6  CATEGORY="base-system"
    36.7 +GROUP="misc"
    36.8  SHORT_DESC="Memory failures detection tool."
    36.9  MAINTAINER="pascal.bellard@slitaz.org"
   36.10  LICENSE="GPL2"
    37.1 --- a/nanochess/receipt	Sun Sep 24 17:53:05 2023 +0000
    37.2 +++ b/nanochess/receipt	Tue Sep 26 17:09:38 2023 +0000
    37.3 @@ -3,6 +3,7 @@
    37.4  PACKAGE="nanochess"
    37.5  VERSION="1.0"
    37.6  CATEGORY="games"
    37.7 +GROUP="games"
    37.8  SHORT_DESC="Chess game in javascript (needs an unicode aware browser)"
    37.9  MAINTAINER="pascal.bellard@slitaz.org"
   37.10  LICENSE="GPL"
    38.1 --- a/ntp-config/receipt	Sun Sep 24 17:53:05 2023 +0000
    38.2 +++ b/ntp-config/receipt	Tue Sep 26 17:09:38 2023 +0000
    38.3 @@ -3,6 +3,7 @@
    38.4  PACKAGE="ntp-config"
    38.5  VERSION="1.0"
    38.6  CATEGORY="network"
    38.7 +GROUP="network"
    38.8  SHORT_DESC="Network time protocol configuration"
    38.9  MAINTAINER="pascal.bellard@slitaz.org"
   38.10  LICENSE="BSD"
    39.1 --- a/p910nd/receipt	Sun Sep 24 17:53:05 2023 +0000
    39.2 +++ b/p910nd/receipt	Tue Sep 26 17:09:38 2023 +0000
    39.3 @@ -3,6 +3,7 @@
    39.4  PACKAGE="p910nd"
    39.5  VERSION="0.93"
    39.6  CATEGORY="network"
    39.7 +GROUP="network"
    39.8  SHORT_DESC="Forward printer device to 9100+ ports"
    39.9  MAINTAINER="pascal.bellard@slitaz.org"
   39.10  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    40.1 --- a/plop/receipt	Sun Sep 24 17:53:05 2023 +0000
    40.2 +++ b/plop/receipt	Tue Sep 26 17:09:38 2023 +0000
    40.3 @@ -3,6 +3,7 @@
    40.4  PACKAGE="plop"
    40.5  VERSION="5.0.15"
    40.6  CATEGORY="base-system"
    40.7 +GROUP="misc"
    40.8  SHORT_DESC="USB / IDE-CD / PCMCIA CardBus and others boot utility (486+)."
    40.9  MAINTAINER="pascal.bellard@slitaz.org"
   40.10  LICENSE="other"
    41.1 --- a/posixovl/receipt	Sun Sep 24 17:53:05 2023 +0000
    41.2 +++ b/posixovl/receipt	Tue Sep 26 17:09:38 2023 +0000
    41.3 @@ -3,6 +3,7 @@
    41.4  PACKAGE="posixovl"
    41.5  VERSION="1.2"
    41.6  CATEGORY="system-tools"
    41.7 +GROUP="filesystem"
    41.8  SHORT_DESC="FUSE file system that provides POSIX functionality"
    41.9  MAINTAINER="pascal.bellard@slitaz.org"
   41.10  LICENSE="GPL2"
    42.1 --- a/ppp-plugins-atm/receipt	Sun Sep 24 17:53:05 2023 +0000
    42.2 +++ b/ppp-plugins-atm/receipt	Tue Sep 26 17:09:38 2023 +0000
    42.3 @@ -3,6 +3,7 @@
    42.4  PACKAGE="ppp-plugins-atm"
    42.5  VERSION="2.4.7"
    42.6  CATEGORY="network"
    42.7 +GROUP="network"
    42.8  SHORT_DESC="ppp extras ADSL using pppoatm"
    42.9  MAINTAINER="pascal.bellard@slitaz.org"
   42.10  LICENSE="BSD GPL"
    43.1 --- a/ppp/receipt	Sun Sep 24 17:53:05 2023 +0000
    43.2 +++ b/ppp/receipt	Tue Sep 26 17:09:38 2023 +0000
    43.3 @@ -3,6 +3,7 @@
    43.4  PACKAGE="ppp"
    43.5  VERSION="2.4.7"
    43.6  CATEGORY="network"
    43.7 +GROUP="network"
    43.8  SHORT_DESC="Point to Point Protocol (Internet with RTC modems)"
    43.9  MAINTAINER="pascal.bellard@slitaz.org"
   43.10  LICENSE="BSD GPL"
    44.1 --- a/pppdump/receipt	Sun Sep 24 17:53:05 2023 +0000
    44.2 +++ b/pppdump/receipt	Tue Sep 26 17:09:38 2023 +0000
    44.3 @@ -3,6 +3,7 @@
    44.4  PACKAGE="pppdump"
    44.5  VERSION="2.4.7"
    44.6  CATEGORY="network"
    44.7 +GROUP="network"
    44.8  SHORT_DESC="Point to Point Protocol debug tool"
    44.9  MAINTAINER="pascal.bellard@slitaz.org"
   44.10  LICENSE="BSD GPL"
    45.1 --- a/pppstats/receipt	Sun Sep 24 17:53:05 2023 +0000
    45.2 +++ b/pppstats/receipt	Tue Sep 26 17:09:38 2023 +0000
    45.3 @@ -3,6 +3,7 @@
    45.4  PACKAGE="pppstats"
    45.5  VERSION="2.4.7"
    45.6  CATEGORY="network"
    45.7 +GROUP="network"
    45.8  SHORT_DESC="Point to Point Protocol report tool"
    45.9  MAINTAINER="pascal.bellard@slitaz.org"
   45.10  LICENSE="BSD GPL"
    46.1 --- a/qemacs/receipt	Sun Sep 24 17:53:05 2023 +0000
    46.2 +++ b/qemacs/receipt	Tue Sep 26 17:09:38 2023 +0000
    46.3 @@ -3,6 +3,7 @@
    46.4  PACKAGE="qemacs"
    46.5  VERSION="0.3.2"
    46.6  CATEGORY="development"
    46.7 +GROUP="development"
    46.8  SHORT_DESC="Light emacs clone."
    46.9  MAINTAINER="pascal.bellard@slitaz.org"
   46.10  LICENSE="LGPL"
    47.1 --- a/rsh/receipt	Sun Sep 24 17:53:05 2023 +0000
    47.2 +++ b/rsh/receipt	Tue Sep 26 17:09:38 2023 +0000
    47.3 @@ -3,6 +3,7 @@
    47.4  PACKAGE="rsh"
    47.5  VERSION="0.17"
    47.6  CATEGORY="network"
    47.7 +GROUP="network"
    47.8  SHORT_DESC="Remote connection tools"
    47.9  MAINTAINER="pascal.bellard@slitaz.org"
   47.10  LICENSE="BSD"
    48.1 --- a/runcom/receipt	Sun Sep 24 17:53:05 2023 +0000
    48.2 +++ b/runcom/receipt	Tue Sep 26 17:09:38 2023 +0000
    48.3 @@ -3,6 +3,7 @@
    48.4  PACKAGE="runcom"
    48.5  VERSION="1.0"
    48.6  CATEGORY="system-tools"
    48.7 +GROUP="system"
    48.8  SHORT_DESC="DOS .com binary format support"
    48.9  MAINTAINER="devel@slitaz.org"
   48.10  LICENSE="GPL"
    49.1 --- a/tcc-arm/receipt	Sun Sep 24 17:53:05 2023 +0000
    49.2 +++ b/tcc-arm/receipt	Tue Sep 26 17:09:38 2023 +0000
    49.3 @@ -3,6 +3,7 @@
    49.4  PACKAGE="tcc-arm"
    49.5  VERSION="0.9.25"
    49.6  CATEGORY="development"
    49.7 +GROUP="development"
    49.8  SHORT_DESC="Tiny C Compiler (ARM targets)"
    49.9  MAINTAINER="pascal.bellard@slitaz.org"
   49.10  LICENSE="LGPL"
    50.1 --- a/tcc-c67/receipt	Sun Sep 24 17:53:05 2023 +0000
    50.2 +++ b/tcc-c67/receipt	Tue Sep 26 17:09:38 2023 +0000
    50.3 @@ -3,6 +3,7 @@
    50.4  PACKAGE="tcc-c67"
    50.5  VERSION="0.9.25"
    50.6  CATEGORY="development"
    50.7 +GROUP="development"
    50.8  SHORT_DESC="Tiny C Compiler (TMS320C67xx target)"
    50.9  MAINTAINER="pascal.bellard@slitaz.org"
   50.10  LICENSE="LGPL"
    51.1 --- a/tcc-common/receipt	Sun Sep 24 17:53:05 2023 +0000
    51.2 +++ b/tcc-common/receipt	Tue Sep 26 17:09:38 2023 +0000
    51.3 @@ -3,6 +3,7 @@
    51.4  PACKAGE="tcc-common"
    51.5  VERSION="0.9.25"
    51.6  CATEGORY="development"
    51.7 +GROUP="development"
    51.8  SHORT_DESC="Common files for Tiny C Compilers"
    51.9  MAINTAINER="pascal.bellard@slitaz.org"
   51.10  LICENSE="LGPL"
    52.1 --- a/tcc-win32/receipt	Sun Sep 24 17:53:05 2023 +0000
    52.2 +++ b/tcc-win32/receipt	Tue Sep 26 17:09:38 2023 +0000
    52.3 @@ -3,6 +3,7 @@
    52.4  PACKAGE="tcc-win32"
    52.5  VERSION="0.9.25"
    52.6  CATEGORY="development"
    52.7 +GROUP="development"
    52.8  SHORT_DESC="Tiny C Compiler (win32 target)"
    52.9  MAINTAINER="pascal.bellard@slitaz.org"
   52.10  LICENSE="LGPL"
    53.1 --- a/tcc-x86_64/receipt	Sun Sep 24 17:53:05 2023 +0000
    53.2 +++ b/tcc-x86_64/receipt	Tue Sep 26 17:09:38 2023 +0000
    53.3 @@ -3,6 +3,7 @@
    53.4  PACKAGE="tcc-x86_64"
    53.5  VERSION="0.9.25"
    53.6  CATEGORY="development"
    53.7 +GROUP="development"
    53.8  SHORT_DESC="Tiny C Compiler (x86_64 target)"
    53.9  MAINTAINER="pascal.bellard@slitaz.org"
   53.10  LICENSE="LGPL"
    54.1 --- a/tcc/receipt	Sun Sep 24 17:53:05 2023 +0000
    54.2 +++ b/tcc/receipt	Tue Sep 26 17:09:38 2023 +0000
    54.3 @@ -3,6 +3,7 @@
    54.4  PACKAGE="tcc"
    54.5  VERSION="0.9.25"
    54.6  CATEGORY="development"
    54.7 +GROUP="development"
    54.8  SHORT_DESC="Tiny C Compiler (native target)"
    54.9  MAINTAINER="pascal.bellard@slitaz.org"
   54.10  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    55.1 --- a/tfttest/receipt	Sun Sep 24 17:53:05 2023 +0000
    55.2 +++ b/tfttest/receipt	Tue Sep 26 17:09:38 2023 +0000
    55.3 @@ -3,6 +3,7 @@
    55.4  PACKAGE="tfttest"
    55.5  VERSION="1.01"
    55.6  CATEGORY="base-system"
    55.7 +GROUP="misc"
    55.8  SHORT_DESC="CHZ Monitor-Test is a dead pixel detection tool."
    55.9  MAINTAINER="pascal.bellard@slitaz.org"
   55.10  LICENSE="GPL2"
    56.1 --- a/udhcpd-config/receipt	Sun Sep 24 17:53:05 2023 +0000
    56.2 +++ b/udhcpd-config/receipt	Tue Sep 26 17:09:38 2023 +0000
    56.3 @@ -3,6 +3,7 @@
    56.4  PACKAGE="udhcpd-config"
    56.5  VERSION="1.0"
    56.6  CATEGORY="network"
    56.7 +GROUP="network"
    56.8  SHORT_DESC="DHCP server configuration file"
    56.9  MAINTAINER="pascal.bellard@slitaz.org"
   56.10  LICENSE="BSD"
    57.1 --- a/x86test/receipt	Sun Sep 24 17:53:05 2023 +0000
    57.2 +++ b/x86test/receipt	Tue Sep 26 17:09:38 2023 +0000
    57.3 @@ -4,6 +4,7 @@
    57.4  VERSION="0.10a"
    57.5  CATEGORY="base-system"
    57.6  SHORT_DESC="CPU failures detection tool."
    57.7 +GROUP="misc"
    57.8  MAINTAINER="pascal.bellard@slitaz.org"
    57.9  LICENSE="GPL2"
   57.10  WEB_SITE="https://web.archive.org/web/20090327202227/http://www.vortex.prodigynet.co.uk/x86test/"