Skip to content
This repository was archived by the owner on Sep 8, 2023. It is now read-only.
This repository was archived by the owner on Sep 8, 2023. It is now read-only.

Slitaz cfg not working anymore #218

@Libeccio84

Description

@Libeccio84

Hi,
I have checked your default.cfg for Slitaz, but it doesnt work with Slitaz 5 (rolling).
This works for me:

for isofile in $isopath/slitaz*core64.iso; do
  if [ -e "$isofile" ]; then
    regexp --set=isoname "$isopath/(.*)" "$isofile"
    menuentry "$isoname (memdisk x86-64)" "$isofile" {
      iso_path="$2"
      export iso_path
      search --set=root --file "$iso_path"
      loopback loop "$iso_path"
      linux (loop)/boot/bzImage64 rw lang=C kmap=it root=/dev/null vga=normal autologin
	    initrd (loop)/boot/rootfs.gz
    }
  fi
done

for isofile in $isopath/slitaz*core.iso; do
  if [ -e "$isofile" ]; then
    regexp --set=isoname "$isopath/(.*)" "$isofile"
    menuentry "$isoname (memdisk 32bit)" "$isofile" {
      iso_path="$2"
      export iso_path
      search --set=root --file "$iso_path"
      loopback loop "$iso_path"
      linux (loop)/boot/bzImage rw lang=C kmap=it root=/dev/null vga=normal autologin
      initrd (loop)/boot/rootfs.gz
    }
  fi
done

but you have to download both architectures, not the 5in1 iso.
Hope others might find this helpful.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions