[arch-releng] [PATCH 0/3] Misc changes to the bootloader and configuration
These are some bootloader changes, yet untested. Please review them and comment.
HDT is a hardware detection/info tool. It will show information about your hardware, including PCI devices. It will also show the names of the kernel modules that will support your devices. --- configs/syslinux-iso/Makefile | 5 ++++- .../syslinux-iso/boot-files/isolinux/isolinux.cfg | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletions(-) diff --git a/configs/syslinux-iso/Makefile b/configs/syslinux-iso/Makefile index 8990f0f..a22e824 100644 --- a/configs/syslinux-iso/Makefile +++ b/configs/syslinux-iso/Makefile @@ -46,7 +46,10 @@ bootfiles: root-image cp $(WORKDIR)/root-image/usr/lib/syslinux/memdisk $(WORKDIR)/iso/boot/isolinux/ cp $(WORKDIR)/root-image/usr/lib/syslinux/pxelinux.0 $(WORKDIR)/iso/boot/isolinux/ cp $(WORKDIR)/root-image/usr/lib/syslinux/gpxelinux.0 $(WORKDIR)/iso/boot/isolinux/ - + # Add pci.ids and modules.alias for hdt + mkdir -p $(WORKDIR)/iso/boot/isolinux/hdt/ + wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > $(WORKDIR)/iso/boot/isolinux/hdt/pciids.gz + cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9 > $(WORKDIR)/iso/boot/isolinux/hdt/modalias.gz # Rules for initcpio images initcpio: $(WORKDIR)/iso/boot/archiso.img diff --git a/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg b/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg index 3cac5da..a0d258e 100644 --- a/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg +++ b/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg @@ -56,6 +56,12 @@ LABEL memtest MENU LABEL Run Memtest86+ (RAM test) KERNEL /boot/memtest +# http://hdt-project.org/ +LABEL hdt +MENU LABEL Hardware Information (HDT) +KERNEL hdt.c32 +APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz + # http://www.vortex.prodigynet.co.uk/x86test/ LABEL x86test MENU LABEL Run x86test (CPU test) -- 1.7.1.1
On 07/20/2010 11:54 AM, Thomas Bächler wrote:
HDT is a hardware detection/info tool. It will show information about your hardware, including PCI devices. It will also show the names of the kernel modules that will support your devices. --- configs/syslinux-iso/Makefile | 5 ++++- .../syslinux-iso/boot-files/isolinux/isolinux.cfg | 6 ++++++ 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/configs/syslinux-iso/Makefile b/configs/syslinux-iso/Makefile index 8990f0f..a22e824 100644 --- a/configs/syslinux-iso/Makefile +++ b/configs/syslinux-iso/Makefile @@ -46,7 +46,10 @@ bootfiles: root-image cp $(WORKDIR)/root-image/usr/lib/syslinux/memdisk $(WORKDIR)/iso/boot/isolinux/ cp $(WORKDIR)/root-image/usr/lib/syslinux/pxelinux.0 $(WORKDIR)/iso/boot/isolinux/ cp $(WORKDIR)/root-image/usr/lib/syslinux/gpxelinux.0 $(WORKDIR)/iso/boot/isolinux/ - + # Add pci.ids and modules.alias for hdt + mkdir -p $(WORKDIR)/iso/boot/isolinux/hdt/ + wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9> $(WORKDIR)/iso/boot/isolinux/hdt/pciids.gz + cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9> $(WORKDIR)/iso/boot/isolinux/hdt/modalias.gz
oops! root-images -> root-image -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 21.07.2010 20:34, schrieb Gerardo Exequiel Pozzi:
+ # Add pci.ids and modules.alias for hdt + mkdir -p $(WORKDIR)/iso/boot/isolinux/hdt/ + wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9> $(WORKDIR)/iso/boot/isolinux/hdt/pciids.gz + cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9> $(WORKDIR)/iso/boot/isolinux/hdt/modalias.gz
oops! root-images -> root-image
Oops indeed. Didn't notice that.
The name of the bootloader is syslinux, while isolinux is just one of many components. isolinux.bin now also accepts syslinux.cfg as a configuration file name (as do all other loaders). Thus, rename the isolinux/ folder to syslinux/, and rename isolinux.cfg to syslinux.cfg. The only occurrence of 'isolinux' is now the actual loader file 'isolinux.bin' --- archiso/mkarchiso | 6 +++--- archiso2dual/Makefile | 2 +- archiso2dual/README | 4 ++-- archiso2dual/archiso2dual | 38 +++++++++++++++++++------------------- configs/syslinux-iso/Makefile | 16 ++++++++-------- 5 files changed, 33 insertions(+), 33 deletions(-) diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 6a8cb68..6a2aeff 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -230,8 +230,8 @@ _imgcommon () { cp "${work_dir}/isomounts" "${work_dir}/iso/" - if ! sed "s|archisolabel=[^ ]*|archisolabel=${LABEL}|" -i ${work_dir}/iso/boot/isolinux/isolinux.cfg; then - echo "Error: ${work_dir}/iso/boot/isolinux/isolinux.cfg, doesn't exist, aborting." + if ! sed "s|archisolabel=[^ ]*|archisolabel=${LABEL}|" -i ${work_dir}/iso/boot/syslinux/syslinux.cfg; then + echo "Error: ${work_dir}/iso/boot/syslinux/syslinux.cfg, doesn't exist, aborting." exit 1 fi } @@ -243,7 +243,7 @@ command_iso () { qflag="" [ "${QUIET}" = "y" ] && qflag="-quiet" mkisofs ${qflag} -r -l \ - -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \ + -b boot/syslinux/isolinux.bin -c boot/syslinux/boot.cat \ -uid 0 -gid 0 \ -udf -allow-limited-size -iso-level 3 \ -input-charset utf-8 -p "prepared by mkarchiso" \ diff --git a/archiso2dual/Makefile b/archiso2dual/Makefile index 6d37c71..c216e11 100644 --- a/archiso2dual/Makefile +++ b/archiso2dual/Makefile @@ -4,7 +4,7 @@ install: all install -D -m 755 archiso2dual $(DESTDIR)/usr/sbin/archiso2dual install -d -m 755 $(DESTDIR)/usr/share/archiso2dual/ install -D -m 644 isomounts $(DESTDIR)/usr/share/archiso2dual/isomounts - install -D -m 644 isolinux.cfg $(DESTDIR)/usr/share/archiso2dual/isolinux.cfg + install -D -m 644 syslinux.cfg $(DESTDIR)/usr/share/archiso2dual/syslinux.cfg install -D -m 644 removefiles.lst $(DESTDIR)/usr/share/archiso2dual/removefiles.lst uninstall: diff --git a/archiso2dual/README b/archiso2dual/README index 2a1d19c..51b0b8b 100644 --- a/archiso2dual/README +++ b/archiso2dual/README @@ -9,10 +9,10 @@ running with profile "split": | |-- i686 | | |-- archiso.img | | `-- vmlinuz26 -| |-- isolinux +| |-- syslinux | | |-- boot.cat | | |-- isolinux.bin -| | |-- isolinux.cfg +| | |-- syslinux.cfg | | `-- memdisk | |-- memtest | |-- memtest.COPYING diff --git a/archiso2dual/archiso2dual b/archiso2dual/archiso2dual index e3b49ad..b8facd3 100755 --- a/archiso2dual/archiso2dual +++ b/archiso2dual/archiso2dual @@ -17,7 +17,7 @@ quiet="y" profile_type="basic" work_dir="/tmp/archiso2dual" isomounts_file="/usr/share/archiso2dual/isomounts" -isolinuxcfg_file="/usr/share/archiso2dual/isolinux.cfg" +syslinuxcfg_file="/usr/share/archiso2dual/syslinux.cfg" removefiles_file="/usr/share/archiso2dual/removefiles.lst" appname=${0##*/} _error="0" @@ -47,19 +47,19 @@ kernel_copy() { done } -isolinux_copy() { +syslinux_copy() { echo "Executing: ${FUNCNAME}" cp ${_v} $work_dir/i686/mnt/boot/{memtest*,releasenotes.txt,splash.png,x86test*} $work_dir/iso/boot/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/*.c32 $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/memdisk $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/isolinux.bin $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/pxelinux.0 $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/gpxelinux.0 $work_dir/iso/boot/isolinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/*.c32 $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/memdisk $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/isolinux.bin $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/pxelinux.0 $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/gpxelinux.0 $work_dir/iso/boot/syslinux/ } -isolinuxcfg_copy() { +syslinuxcfg_copy() { echo "Executing: ${FUNCNAME}" - sed "s|XXX|${label}|g" ${isolinuxcfg_file} > $work_dir/iso/boot/isolinux/isolinux.cfg + sed "s|XXX|${label}|g" ${syslinuxcfg_file} > $work_dir/iso/boot/syslinux/syslinux.cfg } isomounts_copy() { @@ -82,7 +82,7 @@ make_iso() { _qflag="" fi mkisofs ${_v} ${_qflag} -r -l \ - -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \ + -b boot/syslinux/isolinux.bin -c boot/syslinux/boot.cat \ -uid 0 -gid 0 \ -udf -allow-limited-size -iso-level 3 \ -input-charset utf-8 -p "prepared by archiso2dual" \ @@ -202,7 +202,7 @@ make_workspace() { mkdir ${_v} -p ${work_dir}/${_arch}/mnt mkdir ${_v} -p ${work_dir}/tmp/${_arch} done - mkdir ${_v} -p ${work_dir}/iso/boot/isolinux + mkdir ${_v} -p ${work_dir}/iso/boot/syslinux mkdir ${_v} -p ${work_dir}/iso/any mkdir ${_v} -p ${work_dir}/tmp/any } @@ -221,8 +221,8 @@ show_help() echo " general options:" echo " -M <isomounts> Path to isomounts file (default to '${isomounts_file}'" - echo " -S <isolinux> Path to isolinux.cfg file - (default to '${isolinuxcfg_file}'" + echo " -S <syslinux> Path to syslinux.cfg file + (default to '${syslinuxcfg_file}'" echo " -R <removefiles> Path to removefiles file (default to '${removefiles_file}'" echo " -w <workdir> Set work directory @@ -251,7 +251,7 @@ show_config() { echo " source iso x86_64 image: ${isofile_x86_64}" echo " target iso image: ${imgname}" echo " isomounts file: ${isomounts_file}" - echo " isolinux.cfg file: ${isolinuxcfg_file}" + echo " syslinux.cfg file: ${syslinuxcfg_file}" echo " removefiles.lst file: ${removefiles_file}" echo " working directory: ${work_dir}" echo " profile: ${profile_type}" @@ -308,8 +308,8 @@ sanity_check() { _error="1" fi - if [ ! -f "${isolinuxcfg_file}" ]; then - echo "*ERROR*: ${isolinuxcfg_file} does not exist, specify one with -S option" + if [ ! -f "${syslinuxcfg_file}" ]; then + echo "*ERROR*: ${syslinuxcfg_file} does not exist, specify one with -S option" _error="1" fi @@ -344,7 +344,7 @@ while getopts '3:6:o:T:M:S:R:L:P:A:yvh' arg; do esac ;; M) isomounts_file="${OPTARG}" ;; - S) isolinuxcfg_file="${OPTARG}" ;; + S) syslinuxcfg_file="${OPTARG}" ;; R) removefiles_file="${OPTARG}" ;; L) label="${OPTARG}" ;; P) publisher="${OPTARG}" ;; @@ -369,11 +369,11 @@ fi make_workspace iso_mount kernel_copy -isolinux_copy +syslinux_copy squashfs_copy check_if_core_medium iso_umount -isolinuxcfg_copy +syslinuxcfg_copy isomounts_copy if [ ${profile_type} = "full" ] || [ ${profile_type} = "split" ]; then root_image_extract diff --git a/configs/syslinux-iso/Makefile b/configs/syslinux-iso/Makefile index a22e824..f510981 100644 --- a/configs/syslinux-iso/Makefile +++ b/configs/syslinux-iso/Makefile @@ -41,15 +41,15 @@ bootfiles: root-image cp $(WORKDIR)/root-image/boot/memtest86+/memtest.bin $(WORKDIR)/iso/boot/memtest cp $(WORKDIR)/root-image/usr/share/licenses/common/GPL2/license.txt $(WORKDIR)/iso/boot/memtest.COPYING cp -r boot-files/* $(WORKDIR)/iso/boot/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/*.c32 $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/memdisk $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/pxelinux.0 $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/gpxelinux.0 $(WORKDIR)/iso/boot/isolinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/*.c32 $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/memdisk $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/pxelinux.0 $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/gpxelinux.0 $(WORKDIR)/iso/boot/syslinux/ # Add pci.ids and modules.alias for hdt - mkdir -p $(WORKDIR)/iso/boot/isolinux/hdt/ - wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > $(WORKDIR)/iso/boot/isolinux/hdt/pciids.gz - cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9 > $(WORKDIR)/iso/boot/isolinux/hdt/modalias.gz + mkdir -p $(WORKDIR)/iso/boot/syslinux/hdt/ + wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > $(WORKDIR)/iso/boot/syslinux/hdt/pciids.gz + cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9 > $(WORKDIR)/iso/boot/syslinux/hdt/modalias.gz # Rules for initcpio images initcpio: $(WORKDIR)/iso/boot/archiso.img -- 1.7.1.1
The name of the bootloader is syslinux, while isolinux is just one of many components. isolinux.bin now also accepts syslinux.cfg as a configuration file name (as do all other loaders). Thus, rename the isolinux/ folder to syslinux/, and rename isolinux.cfg to syslinux.cfg. The only occurrence of 'isolinux' is now the actual loader file 'isolinux.bin' --- archiso/mkarchiso | 6 +- archiso2dual/Makefile | 2 +- archiso2dual/README | 4 +- archiso2dual/archiso2dual | 38 +++++----- archiso2dual/isolinux.cfg | 79 -------------------- archiso2dual/syslinux.cfg | 79 ++++++++++++++++++++ configs/syslinux-iso/Makefile | 16 ++-- .../syslinux-iso/boot-files/isolinux/isolinux.cfg | 69 ----------------- .../syslinux-iso/boot-files/syslinux/syslinux.cfg | 69 +++++++++++++++++ 9 files changed, 181 insertions(+), 181 deletions(-) delete mode 100644 archiso2dual/isolinux.cfg create mode 100644 archiso2dual/syslinux.cfg delete mode 100644 configs/syslinux-iso/boot-files/isolinux/isolinux.cfg create mode 100644 configs/syslinux-iso/boot-files/syslinux/syslinux.cfg diff --git a/archiso/mkarchiso b/archiso/mkarchiso index 6a8cb68..6a2aeff 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -230,8 +230,8 @@ _imgcommon () { cp "${work_dir}/isomounts" "${work_dir}/iso/" - if ! sed "s|archisolabel=[^ ]*|archisolabel=${LABEL}|" -i ${work_dir}/iso/boot/isolinux/isolinux.cfg; then - echo "Error: ${work_dir}/iso/boot/isolinux/isolinux.cfg, doesn't exist, aborting." + if ! sed "s|archisolabel=[^ ]*|archisolabel=${LABEL}|" -i ${work_dir}/iso/boot/syslinux/syslinux.cfg; then + echo "Error: ${work_dir}/iso/boot/syslinux/syslinux.cfg, doesn't exist, aborting." exit 1 fi } @@ -243,7 +243,7 @@ command_iso () { qflag="" [ "${QUIET}" = "y" ] && qflag="-quiet" mkisofs ${qflag} -r -l \ - -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \ + -b boot/syslinux/isolinux.bin -c boot/syslinux/boot.cat \ -uid 0 -gid 0 \ -udf -allow-limited-size -iso-level 3 \ -input-charset utf-8 -p "prepared by mkarchiso" \ diff --git a/archiso2dual/Makefile b/archiso2dual/Makefile index 6d37c71..c216e11 100644 --- a/archiso2dual/Makefile +++ b/archiso2dual/Makefile @@ -4,7 +4,7 @@ install: all install -D -m 755 archiso2dual $(DESTDIR)/usr/sbin/archiso2dual install -d -m 755 $(DESTDIR)/usr/share/archiso2dual/ install -D -m 644 isomounts $(DESTDIR)/usr/share/archiso2dual/isomounts - install -D -m 644 isolinux.cfg $(DESTDIR)/usr/share/archiso2dual/isolinux.cfg + install -D -m 644 syslinux.cfg $(DESTDIR)/usr/share/archiso2dual/syslinux.cfg install -D -m 644 removefiles.lst $(DESTDIR)/usr/share/archiso2dual/removefiles.lst uninstall: diff --git a/archiso2dual/README b/archiso2dual/README index 2a1d19c..51b0b8b 100644 --- a/archiso2dual/README +++ b/archiso2dual/README @@ -9,10 +9,10 @@ running with profile "split": | |-- i686 | | |-- archiso.img | | `-- vmlinuz26 -| |-- isolinux +| |-- syslinux | | |-- boot.cat | | |-- isolinux.bin -| | |-- isolinux.cfg +| | |-- syslinux.cfg | | `-- memdisk | |-- memtest | |-- memtest.COPYING diff --git a/archiso2dual/archiso2dual b/archiso2dual/archiso2dual index e3b49ad..b8facd3 100755 --- a/archiso2dual/archiso2dual +++ b/archiso2dual/archiso2dual @@ -17,7 +17,7 @@ quiet="y" profile_type="basic" work_dir="/tmp/archiso2dual" isomounts_file="/usr/share/archiso2dual/isomounts" -isolinuxcfg_file="/usr/share/archiso2dual/isolinux.cfg" +syslinuxcfg_file="/usr/share/archiso2dual/syslinux.cfg" removefiles_file="/usr/share/archiso2dual/removefiles.lst" appname=${0##*/} _error="0" @@ -47,19 +47,19 @@ kernel_copy() { done } -isolinux_copy() { +syslinux_copy() { echo "Executing: ${FUNCNAME}" cp ${_v} $work_dir/i686/mnt/boot/{memtest*,releasenotes.txt,splash.png,x86test*} $work_dir/iso/boot/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/*.c32 $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/memdisk $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/isolinux.bin $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/pxelinux.0 $work_dir/iso/boot/isolinux/ - cp ${_v} $work_dir/i686/mnt/boot/isolinux/gpxelinux.0 $work_dir/iso/boot/isolinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/*.c32 $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/memdisk $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/isolinux.bin $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/pxelinux.0 $work_dir/iso/boot/syslinux/ + cp ${_v} $work_dir/i686/mnt/boot/syslinux/gpxelinux.0 $work_dir/iso/boot/syslinux/ } -isolinuxcfg_copy() { +syslinuxcfg_copy() { echo "Executing: ${FUNCNAME}" - sed "s|XXX|${label}|g" ${isolinuxcfg_file} > $work_dir/iso/boot/isolinux/isolinux.cfg + sed "s|XXX|${label}|g" ${syslinuxcfg_file} > $work_dir/iso/boot/syslinux/syslinux.cfg } isomounts_copy() { @@ -82,7 +82,7 @@ make_iso() { _qflag="" fi mkisofs ${_v} ${_qflag} -r -l \ - -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat \ + -b boot/syslinux/isolinux.bin -c boot/syslinux/boot.cat \ -uid 0 -gid 0 \ -udf -allow-limited-size -iso-level 3 \ -input-charset utf-8 -p "prepared by archiso2dual" \ @@ -202,7 +202,7 @@ make_workspace() { mkdir ${_v} -p ${work_dir}/${_arch}/mnt mkdir ${_v} -p ${work_dir}/tmp/${_arch} done - mkdir ${_v} -p ${work_dir}/iso/boot/isolinux + mkdir ${_v} -p ${work_dir}/iso/boot/syslinux mkdir ${_v} -p ${work_dir}/iso/any mkdir ${_v} -p ${work_dir}/tmp/any } @@ -221,8 +221,8 @@ show_help() echo " general options:" echo " -M <isomounts> Path to isomounts file (default to '${isomounts_file}'" - echo " -S <isolinux> Path to isolinux.cfg file - (default to '${isolinuxcfg_file}'" + echo " -S <syslinux> Path to syslinux.cfg file + (default to '${syslinuxcfg_file}'" echo " -R <removefiles> Path to removefiles file (default to '${removefiles_file}'" echo " -w <workdir> Set work directory @@ -251,7 +251,7 @@ show_config() { echo " source iso x86_64 image: ${isofile_x86_64}" echo " target iso image: ${imgname}" echo " isomounts file: ${isomounts_file}" - echo " isolinux.cfg file: ${isolinuxcfg_file}" + echo " syslinux.cfg file: ${syslinuxcfg_file}" echo " removefiles.lst file: ${removefiles_file}" echo " working directory: ${work_dir}" echo " profile: ${profile_type}" @@ -308,8 +308,8 @@ sanity_check() { _error="1" fi - if [ ! -f "${isolinuxcfg_file}" ]; then - echo "*ERROR*: ${isolinuxcfg_file} does not exist, specify one with -S option" + if [ ! -f "${syslinuxcfg_file}" ]; then + echo "*ERROR*: ${syslinuxcfg_file} does not exist, specify one with -S option" _error="1" fi @@ -344,7 +344,7 @@ while getopts '3:6:o:T:M:S:R:L:P:A:yvh' arg; do esac ;; M) isomounts_file="${OPTARG}" ;; - S) isolinuxcfg_file="${OPTARG}" ;; + S) syslinuxcfg_file="${OPTARG}" ;; R) removefiles_file="${OPTARG}" ;; L) label="${OPTARG}" ;; P) publisher="${OPTARG}" ;; @@ -369,11 +369,11 @@ fi make_workspace iso_mount kernel_copy -isolinux_copy +syslinux_copy squashfs_copy check_if_core_medium iso_umount -isolinuxcfg_copy +syslinuxcfg_copy isomounts_copy if [ ${profile_type} = "full" ] || [ ${profile_type} = "split" ]; then root_image_extract diff --git a/archiso2dual/isolinux.cfg b/archiso2dual/isolinux.cfg deleted file mode 100644 index 071c87b..0000000 --- a/archiso2dual/isolinux.cfg +++ /dev/null @@ -1,79 +0,0 @@ -DEFAULT vesamenu.c32 -PROMPT 0 -MENU TITLE Arch Linux -MENU BACKGROUND /boot/splash.png -TIMEOUT 3000 - -# TODO: Replace these crappy messages with something useful -F1 boot.txt -F2 options.txt -F3 help.txt - -MENU WIDTH 78 -MENU MARGIN 4 -MENU ROWS 6 -MENU VSHIFT 10 -MENU TIMEOUTROW 13 -MENU TABMSGROW 11 -MENU CMDLINEROW 11 -MENU HELPMSGROW 16 -MENU HELPMSGENDROW 29 - -# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu - -MENU COLOR border 30;44 #40ffffff #a0000000 std -MENU COLOR title 1;36;44 #9033ccff #a0000000 std -MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all -MENU COLOR unsel 37;44 #50ffffff #a0000000 std -MENU COLOR help 37;40 #c0ffffff #a0000000 std -MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std -MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std -MENU COLOR msg07 37;40 #90ffffff #a0000000 std -MENU COLOR tabmsg 31;40 #30ffffff #00000000 std - -LABEL arch32 -TEXT HELP -Boot the Arch Linux (i686) live medium. It allows you to install Arch Linux or -perform system maintenance. -ENDTEXT -MENU LABEL Boot Arch Linux (i686) -KERNEL /boot/i686/vmlinuz26 -APPEND initrd=/boot/i686/archiso.img archisolabel=XXX rw_branch_size=75% locale=en_US.UTF-8 -# Next line should be uncommented when prepare enviroment to boot from PXE. -#IPAPPEND 3 - -LABEL arch64 -TEXT HELP -Boot the Arch Linux (x86_64) live medium. It allows you to install Arch Linux or -perform system maintenance. -ENDTEXT -MENU LABEL Boot Arch Linux (x86_64) -KERNEL /boot/x86_64/vmlinuz26 -APPEND initrd=/boot/x86_64/archiso.img archisolabel=XXX rw_branch_size=75% locale=en_US.UTF-8 -# Next line should be uncommented when prepare enviroment to boot from PXE. -#IPAPPEND 3 - -LABEL existing -TEXT HELP -Boot an existing operating system. Press TAB to edit the disk and partition -number to boot. -ENDTEXT -MENU LABEL Boot existing OS -KERNEL chain.c32 -APPEND hd0 0 - -# http://www.memtest.org/ -LABEL memtest -MENU LABEL Run Memtest86+ (RAM test) -KERNEL /boot/memtest - -# http://www.vortex.prodigynet.co.uk/x86test/ -LABEL x86test -MENU LABEL Run x86test (CPU test) -KERNEL /boot/x86test - -LABEL reboot -MENU LABEL Reboot -KERNEL reboot.c32 - -ONTIMEOUT arch32 diff --git a/archiso2dual/syslinux.cfg b/archiso2dual/syslinux.cfg new file mode 100644 index 0000000..071c87b --- /dev/null +++ b/archiso2dual/syslinux.cfg @@ -0,0 +1,79 @@ +DEFAULT vesamenu.c32 +PROMPT 0 +MENU TITLE Arch Linux +MENU BACKGROUND /boot/splash.png +TIMEOUT 3000 + +# TODO: Replace these crappy messages with something useful +F1 boot.txt +F2 options.txt +F3 help.txt + +MENU WIDTH 78 +MENU MARGIN 4 +MENU ROWS 6 +MENU VSHIFT 10 +MENU TIMEOUTROW 13 +MENU TABMSGROW 11 +MENU CMDLINEROW 11 +MENU HELPMSGROW 16 +MENU HELPMSGENDROW 29 + +# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu + +MENU COLOR border 30;44 #40ffffff #a0000000 std +MENU COLOR title 1;36;44 #9033ccff #a0000000 std +MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all +MENU COLOR unsel 37;44 #50ffffff #a0000000 std +MENU COLOR help 37;40 #c0ffffff #a0000000 std +MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std +MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std +MENU COLOR msg07 37;40 #90ffffff #a0000000 std +MENU COLOR tabmsg 31;40 #30ffffff #00000000 std + +LABEL arch32 +TEXT HELP +Boot the Arch Linux (i686) live medium. It allows you to install Arch Linux or +perform system maintenance. +ENDTEXT +MENU LABEL Boot Arch Linux (i686) +KERNEL /boot/i686/vmlinuz26 +APPEND initrd=/boot/i686/archiso.img archisolabel=XXX rw_branch_size=75% locale=en_US.UTF-8 +# Next line should be uncommented when prepare enviroment to boot from PXE. +#IPAPPEND 3 + +LABEL arch64 +TEXT HELP +Boot the Arch Linux (x86_64) live medium. It allows you to install Arch Linux or +perform system maintenance. +ENDTEXT +MENU LABEL Boot Arch Linux (x86_64) +KERNEL /boot/x86_64/vmlinuz26 +APPEND initrd=/boot/x86_64/archiso.img archisolabel=XXX rw_branch_size=75% locale=en_US.UTF-8 +# Next line should be uncommented when prepare enviroment to boot from PXE. +#IPAPPEND 3 + +LABEL existing +TEXT HELP +Boot an existing operating system. Press TAB to edit the disk and partition +number to boot. +ENDTEXT +MENU LABEL Boot existing OS +KERNEL chain.c32 +APPEND hd0 0 + +# http://www.memtest.org/ +LABEL memtest +MENU LABEL Run Memtest86+ (RAM test) +KERNEL /boot/memtest + +# http://www.vortex.prodigynet.co.uk/x86test/ +LABEL x86test +MENU LABEL Run x86test (CPU test) +KERNEL /boot/x86test + +LABEL reboot +MENU LABEL Reboot +KERNEL reboot.c32 + +ONTIMEOUT arch32 diff --git a/configs/syslinux-iso/Makefile b/configs/syslinux-iso/Makefile index a22e824..f510981 100644 --- a/configs/syslinux-iso/Makefile +++ b/configs/syslinux-iso/Makefile @@ -41,15 +41,15 @@ bootfiles: root-image cp $(WORKDIR)/root-image/boot/memtest86+/memtest.bin $(WORKDIR)/iso/boot/memtest cp $(WORKDIR)/root-image/usr/share/licenses/common/GPL2/license.txt $(WORKDIR)/iso/boot/memtest.COPYING cp -r boot-files/* $(WORKDIR)/iso/boot/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/*.c32 $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/memdisk $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/pxelinux.0 $(WORKDIR)/iso/boot/isolinux/ - cp $(WORKDIR)/root-image/usr/lib/syslinux/gpxelinux.0 $(WORKDIR)/iso/boot/isolinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/*.c32 $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/isolinux.bin $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/memdisk $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/pxelinux.0 $(WORKDIR)/iso/boot/syslinux/ + cp $(WORKDIR)/root-image/usr/lib/syslinux/gpxelinux.0 $(WORKDIR)/iso/boot/syslinux/ # Add pci.ids and modules.alias for hdt - mkdir -p $(WORKDIR)/iso/boot/isolinux/hdt/ - wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > $(WORKDIR)/iso/boot/isolinux/hdt/pciids.gz - cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9 > $(WORKDIR)/iso/boot/isolinux/hdt/modalias.gz + mkdir -p $(WORKDIR)/iso/boot/syslinux/hdt/ + wget -O - http://pciids.sourceforge.net/v2.2/pci.ids | gzip -9 > $(WORKDIR)/iso/boot/syslinux/hdt/pciids.gz + cat $(WORKDIR)/root-images/lib/modules/$(shell grep ^ALL_kver $(kver_FILE) | cut -d= -f2)/modules.alias | gzip -9 > $(WORKDIR)/iso/boot/syslinux/hdt/modalias.gz # Rules for initcpio images initcpio: $(WORKDIR)/iso/boot/archiso.img diff --git a/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg b/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg deleted file mode 100644 index 57a63fc..0000000 --- a/configs/syslinux-iso/boot-files/isolinux/isolinux.cfg +++ /dev/null @@ -1,69 +0,0 @@ -DEFAULT vesamenu.c32 -PROMPT 0 -MENU TITLE Arch Linux -MENU BACKGROUND /boot/splash.png -TIMEOUT 3000 - -# TODO: Replace these crappy messages with something useful -F1 boot.txt -F2 options.txt -F3 help.txt - -MENU WIDTH 78 -MENU MARGIN 4 -MENU ROWS 5 -MENU VSHIFT 10 -MENU TIMEOUTROW 13 -MENU TABMSGROW 11 -MENU CMDLINEROW 11 -MENU HELPMSGROW 16 -MENU HELPMSGENDROW 29 - -# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu - -MENU COLOR border 30;44 #40ffffff #a0000000 std -MENU COLOR title 1;36;44 #9033ccff #a0000000 std -MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all -MENU COLOR unsel 37;44 #50ffffff #a0000000 std -MENU COLOR help 37;40 #c0ffffff #a0000000 std -MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std -MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std -MENU COLOR msg07 37;40 #90ffffff #a0000000 std -MENU COLOR tabmsg 31;40 #30ffffff #00000000 std - -LABEL arch -TEXT HELP -Boot the Arch Linux live medium. It allows you to install Arch Linux or -perform system maintenance. -ENDTEXT -MENU LABEL Boot Arch Linux -KERNEL /boot/vmlinuz26 -APPEND initrd=/boot/archiso.img archisolabel=XXX rw_branch_size=75% locale=en_US.UTF-8 -# Next line should be uncommented when prepare enviroment to boot from PXE. -#IPAPPEND 3 - -LABEL existing -TEXT HELP -Boot an existing operating system. Press TAB to edit the disk and partition -number to boot. -ENDTEXT -MENU LABEL Boot existing OS -KERNEL chain.c32 -APPEND hd0 0 - -# http://www.memtest.org/ -LABEL memtest -MENU LABEL Run Memtest86+ (RAM test) -KERNEL /boot/memtest - -# http://hdt-project.org/ -LABEL hdt -MENU LABEL Hardware Information (HDT) -KERNEL hdt.c32 -APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz - -LABEL reboot -MENU LABEL Reboot -KERNEL reboot.c32 - -ONTIMEOUT arch diff --git a/configs/syslinux-iso/boot-files/syslinux/syslinux.cfg b/configs/syslinux-iso/boot-files/syslinux/syslinux.cfg new file mode 100644 index 0000000..57a63fc --- /dev/null +++ b/configs/syslinux-iso/boot-files/syslinux/syslinux.cfg @@ -0,0 +1,69 @@ +DEFAULT vesamenu.c32 +PROMPT 0 +MENU TITLE Arch Linux +MENU BACKGROUND /boot/splash.png +TIMEOUT 3000 + +# TODO: Replace these crappy messages with something useful +F1 boot.txt +F2 options.txt +F3 help.txt + +MENU WIDTH 78 +MENU MARGIN 4 +MENU ROWS 5 +MENU VSHIFT 10 +MENU TIMEOUTROW 13 +MENU TABMSGROW 11 +MENU CMDLINEROW 11 +MENU HELPMSGROW 16 +MENU HELPMSGENDROW 29 + +# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu + +MENU COLOR border 30;44 #40ffffff #a0000000 std +MENU COLOR title 1;36;44 #9033ccff #a0000000 std +MENU COLOR sel 7;37;40 #e0ffffff #20ffffff all +MENU COLOR unsel 37;44 #50ffffff #a0000000 std +MENU COLOR help 37;40 #c0ffffff #a0000000 std +MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std +MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std +MENU COLOR msg07 37;40 #90ffffff #a0000000 std +MENU COLOR tabmsg 31;40 #30ffffff #00000000 std + +LABEL arch +TEXT HELP +Boot the Arch Linux live medium. It allows you to install Arch Linux or +perform system maintenance. +ENDTEXT +MENU LABEL Boot Arch Linux +KERNEL /boot/vmlinuz26 +APPEND initrd=/boot/archiso.img archisolabel=XXX rw_branch_size=75% locale=en_US.UTF-8 +# Next line should be uncommented when prepare enviroment to boot from PXE. +#IPAPPEND 3 + +LABEL existing +TEXT HELP +Boot an existing operating system. Press TAB to edit the disk and partition +number to boot. +ENDTEXT +MENU LABEL Boot existing OS +KERNEL chain.c32 +APPEND hd0 0 + +# http://www.memtest.org/ +LABEL memtest +MENU LABEL Run Memtest86+ (RAM test) +KERNEL /boot/memtest + +# http://hdt-project.org/ +LABEL hdt +MENU LABEL Hardware Information (HDT) +KERNEL hdt.c32 +APPEND modules_alias=hdt/modalias.gz pciids=hdt/pciids.gz + +LABEL reboot +MENU LABEL Reboot +KERNEL reboot.c32 + +ONTIMEOUT arch -- 1.7.1.1
On 07/20/2010 11:54 AM, Thomas Bächler wrote:
The name of the bootloader is syslinux, while isolinux is just one of many components. isolinux.bin now also accepts syslinux.cfg as a configuration file name (as do all other loaders).
Thus, rename the isolinux/ folder to syslinux/, and rename isolinux.cfg to syslinux.cfg. The only occurrence of 'isolinux' is now the actual loader file 'isolinux.bin'
Something is wrong here because does not work: ISOLINUX 4.01 0x4c2e378d ETCD Copyright (C) 1994-2010 H. Peter Anvin et al ERROR: No configuration file found # strings /usr/lib/syslinux/isolinux.bin | grep cfg %s/isolinux.cfg But in the syslinux code, as you said this is supported [#1] http://git.kernel.org/?p=boot/syslinux/syslinux.git;a=blob;f=core/fs/iso9660... -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
On 07/21/2010 03:35 PM, Gerardo Exequiel Pozzi wrote:
On 07/20/2010 11:54 AM, Thomas Bächler wrote:
The name of the bootloader is syslinux, while isolinux is just one of many components. isolinux.bin now also accepts syslinux.cfg as a configuration file name (as do all other loaders).
Thus, rename the isolinux/ folder to syslinux/, and rename isolinux.cfg to syslinux.cfg. The only occurrence of 'isolinux' is now the actual loader file 'isolinux.bin'
Something is wrong here because does not work: ISOLINUX 4.01 0x4c2e378d ETCD Copyright (C) 1994-2010 H. Peter Anvin et al ERROR: No configuration file found
# strings /usr/lib/syslinux/isolinux.bin | grep cfg %s/isolinux.cfg
But in the syslinux code, as you said this is supported [#1] http://git.kernel.org/?p=boot/syslinux/syslinux.git;a=blob;f=core/fs/iso9660...
oops! this only work for next syslinux 4.02, you is ahead some kilometers :P -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 21.07.2010 21:06, schrieb Gerardo Exequiel Pozzi:
Something is wrong here because does not work: ISOLINUX 4.01 0x4c2e378d ETCD Copyright (C) 1994-2010 H. Peter Anvin et al ERROR: No configuration file found
# strings /usr/lib/syslinux/isolinux.bin | grep cfg %s/isolinux.cfg
But in the syslinux code, as you said this is supported [#1] http://git.kernel.org/?p=boot/syslinux/syslinux.git;a=blob;f=core/fs/iso9660...
oops! this only work for next syslinux 4.02, you is ahead some kilometers :P
I keep reading commit logs, so I am sometimes ahead of my time, yes. But we should get 4.02 yesterday ... no idea what's still holding it up.
Am 20.07.2010 16:54, schrieb Thomas Bächler:
These are some bootloader changes, yet untested. Please review them and comment.
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it. Also, patch 3/3 forgets to actually move some files, so I'll resend that one.
On 07/20/2010 11:59 AM, Thomas Bächler wrote:
Am 20.07.2010 16:54, schrieb Thomas Bächler:
These are some bootloader changes, yet untested. Please review them and comment.
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it.
Also, patch 3/3 forgets to actually move some files, so I'll resend that one.
Hello Thomas, any posibility to pull your patches from a git repo? Thanks, -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 21.07.2010 00:22, schrieb Gerardo Exequiel Pozzi:
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it.
Also, patch 3/3 forgets to actually move some files, so I'll resend that one.
Hello Thomas, any posibility to pull your patches from a git repo? Thanks,
I decided to put it up here. So you should be able to fetch/pull and check out the new remote branch in your normal archiso tree. http://projects.archlinux.org/archiso.git/log/?h=working_thomas
On 07/20/2010 07:50 PM, Thomas Bächler wrote:
Am 21.07.2010 00:22, schrieb Gerardo Exequiel Pozzi:
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it.
Also, patch 3/3 forgets to actually move some files, so I'll resend that one.
Hello Thomas, any posibility to pull your patches from a git repo? Thanks, I decided to put it up here. So you should be able to fetch/pull and check out the new remote branch in your normal archiso tree. http://projects.archlinux.org/archiso.git/log/?h=working_thomas
Thanks, I will review later. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
On 07/20/2010 11:59 AM, Thomas Bächler wrote:
Am 20.07.2010 16:54, schrieb Thomas Bächler:
These are some bootloader changes, yet untested. Please review them and comment.
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it.
Missing removing x86test from archiso2dual. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 21.07.2010 20:40, schrieb Gerardo Exequiel Pozzi:
On 07/20/2010 11:59 AM, Thomas Bächler wrote:
Am 20.07.2010 16:54, schrieb Thomas Bächler:
These are some bootloader changes, yet untested. Please review them and comment.
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it.
Missing removing x86test from archiso2dual.
One mistake in every patch, yay. I will remake that branch later.
Am 21.07.2010 20:40, schrieb Gerardo Exequiel Pozzi:
On 07/20/2010 11:59 AM, Thomas Bächler wrote:
Am 20.07.2010 16:54, schrieb Thomas Bächler:
These are some bootloader changes, yet untested. Please review them and comment.
Okay, patch 2/3 was over 40KB, so the list filtered it. The patch removes x86test (remove from the configuration), because the upstream URL is dead and there is no other source or information for it.
Missing removing x86test from archiso2dual.
Okay, I deleted the working_thomas branch and pushed a new one (don't pull, just fetch, branch -d and check out again). This should now fix the things I missed (btw, I had also missed to add HDT to the archiso2dual configuration). I kept the "rename to syslinux" commit, as we will have a new syslinux package soon, which will support that change.
Am 22.07.2010 00:09, schrieb Thomas Bächler:
I kept the "rename to syslinux" commit, as we will have a new syslinux package soon, which will support that change.
And 4.02 is released and packaged.
On 07/22/2010 06:36 AM, Thomas Bächler wrote:
Am 22.07.2010 00:09, schrieb Thomas Bächler:
I kept the "rename to syslinux" commit, as we will have a new syslinux package soon, which will support that change. And 4.02 is released and packaged.
works now ;) HDT also works OK, list corresponding pci.ids and modules names. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
Am 23.07.2010 01:10, schrieb Gerardo Exequiel Pozzi:
On 07/22/2010 06:36 AM, Thomas Bächler wrote:
Am 22.07.2010 00:09, schrieb Thomas Bächler:
I kept the "rename to syslinux" commit, as we will have a new syslinux package soon, which will support that change. And 4.02 is released and packaged.
works now ;)
HDT also works OK, list corresponding pci.ids and modules names.
Nice. I'll push the patches to master then.
On 07/22/2010 08:25 PM, Thomas Bächler wrote:
Am 23.07.2010 01:10, schrieb Gerardo Exequiel Pozzi:
On 07/22/2010 06:36 AM, Thomas Bächler wrote:
Am 22.07.2010 00:09, schrieb Thomas Bächler:
I kept the "rename to syslinux" commit, as we will have a new syslinux package soon, which will support that change. And 4.02 is released and packaged.
works now ;)
HDT also works OK, list corresponding pci.ids and modules names.
Nice. I'll push the patches to master then.
great, and wiki is updated. -- Gerardo Exequiel Pozzi \cos^2\alpha + \sin^2\alpha = 1
participants (2)
-
Gerardo Exequiel Pozzi
-
Thomas Bächler