diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-07-21 23:54:05 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-07-21 23:54:05 +0200 |
commit | 3c7340c6aa30737fe04c9ea1ec8a5ea0a4f2e2a9 (patch) | |
tree | 67c21810a359dddf713fe998d54af6eb1a6f9d0f /archiso2dual | |
parent | 7725dba216a8152ab77a1f16a68e1965875b6a72 (diff) |
Add HDT to the boot menu
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.
Diffstat (limited to 'archiso2dual')
-rwxr-xr-x | archiso2dual/archiso2dual | 1 | ||||
-rw-r--r-- | archiso2dual/isolinux.cfg | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/archiso2dual/archiso2dual b/archiso2dual/archiso2dual index e3b49ad..a269de8 100755 --- a/archiso2dual/archiso2dual +++ b/archiso2dual/archiso2dual @@ -55,6 +55,7 @@ isolinux_copy() { 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} -r $work_dir/i686/mnt/boot/isolinux/hdt $work_dir/iso/boot/isolinux/ } isolinuxcfg_copy() { diff --git a/archiso2dual/isolinux.cfg b/archiso2dual/isolinux.cfg index 071c87b..7632257 100644 --- a/archiso2dual/isolinux.cfg +++ b/archiso2dual/isolinux.cfg @@ -67,6 +67,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) |