Jump to content
XPEnology Community

Err0r

Member
  • Posts

    42
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Err0r

  1. https://xpenology.club/install-dsm-7-on-baremetal-or-vm/ Or a driver is not loaded or your user.config.json is incorrect. If your disks are in the normal sata plugs on your motherboard it should work out of the box. check your user_config.json and if the sata mappings are correct.
  2. First fix that boot issue.. It seems its a known problem that happens to many ppl.. https://duckduckgo.com/?q=computer+booting+in+EFI+shell
  3. looks good.. seems something wrong with your bios then.. I mean how can it boot in uefi when you have it disabled
  4. hrmm.. U cant use the ./rploader command there.. u first need to boot into linux (tinycore) Make the image with win32diskimager pls.. when you get the same error, you should enable CMS and try legacy boot in bios.
  5. Maybe try to write it with win32diskimager also, u could try a usb 2.0 port? If everything works you should boot into tinycore it seems you arent even getting in tinycore.. It should look like this: https://xpenology.club/install-dsm-7-on-baremetal-or-vm/ ps. If your usb disk is ******* then clean it with diskpart and create a new parttion with windows. - run cmd as admin - diskpart - list disk (check your usb disk number) - sel disk (your disk number) - clean create a new partition with diskmanager of windows..
  6. so i tried the usbidentify and it seems to work but hangs on this line: usbdevice="$usbdev `grep -B 10 -A 10 $usbdev /tmp/lsusb.out | grep iProduct | awk '{print $3}'` Serial Number : `grep -B 10 -A 10 $usbdev /tmp/lsusb.out | grep iSerial | awk '{print $3}'`" I commented that line because above that line you have the same statement in the else block. Now the script continues. It seems that when you have 2 sticks it should not matter becuase you have the select loop for that.. if [ `echo $vendorid | wc -w` -gt 1 ] ; then echo "Found more than one USB disk devices, please select which one is your loader on" usbvendor=$(for item in $vendorid ; do grep $item /tmp/lsusb.out |awk '{print $3}';done) select usbdev in $usbvendor do vendorid=`grep -B 10 -A 10 $usbdev /tmp/lsusb.out |grep idVendor | grep $usbdev |awk '{print $2}'` productid=`grep -B 10 -A 10 $usbdev /tmp/lsusb.out | grep -A 1 idVendor | grep idProduct | awk '{print $2}'` echo "Selected Device : $usbdev , with VendorID: $vendorid and ProductID: $productid" break done else usbdevice="`grep iManufacturer /tmp/lsusb.out | awk '{print $3}'` `grep iProduct /tmp/lsusb.out | awk '{print $3}' ` SerialNumber: `grep iSerial /tmp/lsusb.out | awk '{print $3}'`" fi
  7. https://xpenology.club/install-dsm-7-on-baremetal-or-vm/
  8. ive added a new function to mount a smb share from tinycore.. could be handy to use it as a work folder to copy the loader.img to after build and pat etc.. u need to install cifs-utils. could be some better bash code.. its a bit rusty function mountshare(){ echo "smb user of the share, leave empty when you do not want to use one" read -r user echo "smb password of the share, leave empty when you do not want to use one" read -r password if [ -n "$user" ] && [ -z "$password" ]; then echo "u used a username, so we need a password too" echo "smb password of the share" read -r password fi echo "smb host ip or hostname" read -r server echo "smb shared folder. Start always with /" read -r share echo "local mount folder. Use foldername for the mount. This folder is created in /home/tc (default:/home/tc/mount)" read -r mountpoint if [ -z "$mountpoint" ] ; then echo "use /home/tc/mount folder, nothing was entered to use so we use the default folder" mountpoint="/home/tc/mount" if [ ! -d "$mountpoint" ]; then sudo mkdir -p "$mountpoint" fi else sudo mkdir -p "$mountpoint" fi if [ -n "$user" ] && [ -n "$password" ]; then sudo mount.cifs "//$server$share" "$mountpoint" -o user="$user",pass="$password" else echo "No user/password given, mount without. Press enter" sudo mount.cifs "//$server$share" "$mountpoint" fi } mountshare) mountshare ;; use: ./rploader.sh mountshare now
  9. ahh sorry.. i missed that in the help maybe add that "now" with an example in the help.. i totally forgot about that.
  10. there seems to be a mistake in the script? You can't call any of the commands because you made a check for 2 arguments.. if [ $# -lt 2 ] ; then showhelp exit 99 fi It will always show the help when using eg: ./rploader.sh backup ./rploader.sh satamap ./rploader.sh identifyusb etc... I changed it to if [ $# -lt 1 ] ; then showhelp exit 99 fi or am i missing something here?
  11. Awesome work!! Will do my second machine soon! First machine works flawless
  12. before you decide to upgrade to dsm 7 take into consideration that python2 apps do not work anymore. I found out the hard way Like: Medusa, couchpotato etc.. U can always use a docker container. also, i had a problem with my volumes with data.. they were gone because idiot me upgraded with the sata cables disconnected of 2 disks LOL. I managed to get them to work after DSM install, that was a learning experience
  13. Ofcourse, i feel stupid. i thought i did not need it anymore. It works now, i got the migration page.. and see that all my data and software etc.. is still there! I still used 6.1.. I must say, i love your tool.. u did good work bud! The only thing i notice is that whenever i want to build again i have to fill in all the configs. Is there a way to save those? Maybe use a config folder where you can keep the configs and when you build it looks in that folder?
  14. Yep, this works on this mobo ASRock Z87-M8 ITX.. btw, i just enabled ssh and then used winscp to edit the json files so no need to to do it all from the command line. But what i really missed on tinycore was a file explorer.. if you are in a gui anyway that would be a nice addition. I just added 1 ssd disk (new one) and when i start the install i get this error: ( i used the latest bromolow with the latest pat file from synology) I did not add the vid and pid from the usb drive, Is this still needed? Or do i need to boot redpill SATA?
  15. thanks, that worked.. what does this mean? i saw something about a sata controller, i will add it here.. let me reboot could that be the problem? edit: Found SATA Controller : pciid 8086d00008c02 Required Extension : No matching extension
  16. is this normal? see bottom from output Loader source : https://github.com/jumkey/redpill-load.git Redpill module source : https://github.com/RedPill-TTG/redpill-lkm.git Extensions : Extensions URL : TOOLKIT_URL : https://sourceforge.net/projects/dsgpl/files/toolkit/DSM7.0/ds.bromolow-7.0.dev.txz/download TOOLKIT_SHA : a5fbc3019ae8787988c2e64191549bfc665a5a9a4cdddb5ee44c10a48ff96cdd SYNOKERNEL_URL : https://sourceforge.net/projects/dsgpl/files/Synology NAS GPL Source/25426branch/bromolow-source/linux-3.10.x.txz/download SYNOKERNEL_SHA : 18aecead760526d652a731121d5b8eae5d6e45087efede0da057413af0b489ed COMPILE_METHOD : toolkit_dev TARGET_PLATFORM : bromolow TARGET_VERSION : 7.0.1 TARGET_REVISION : 42218 REDPILL_LKM_MAKE_TARGET : dev-v7 Checking Internet Access -> OK Checking if a newer version exists on the repo -> Version is current Redpill sources already downloaded, pulling latest Already up to date. Loader sources already downloaded, pulling latest Already up to date. Using static compiled redpill extension Looking for redpill for : ds3615xs_422&>18 Getting file https://raw.githubusercontent.com/pocopico/rp-ext/master/redpill/releases/redpill-3.10.108.tgz Extracting module Got redpill-linux-v3.10.108.ko Starting loader creation Cache directory OK [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating extensions... [1;0m [1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Extension thethorgroup.boot-wait is already installed from https://github.com/jumkey/redpill-load/raw/develop/redpill-boot-wait/rpext-index.json[1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Extension thethorgroup.virtio is already installed from https://github.com/jumkey/redpill-load/raw/develop/redpill-virtio/rpext-index.json[1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating thethorgroup.boot-wait extension... [1;0m [1;32m[#] Downloading remote file https://github.com/jumkey/redpill-load/raw/develop/redpill-boot-wait/rpext-index.json to /home/tc/redpill-load/custom/extensions/_new_ext_index.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.boot-wait index is already up to date[1;0m [1;32m[#] Updating thethorgroup.virtio extension... [1;0m [1;32m[#] Downloading remote file https://github.com/jumkey/redpill-load/raw/develop/redpill-virtio/rpext-index.json to /home/tc/redpill-load/custom/extensions/_new_ext_index.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.virtio index is already up to date[1;0m [1;32m[#] Updating thethorgroup.virtio extension... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating ds3615xs_42218 platforms extensions... [1;0m [1;32m[#] Downloading remote file https://github.com/RedPill-TTG/redpill-boot-wait/raw/master/recipes/universal.json to /home/tc/redpill-load/custom/extensions/_ext_new_rcp.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.boot-wait for ds3615xs_42218 platform is already up to date[1;0m [1;32m[#] Downloading remote file https://github.com/RedPill-TTG/redpill-virtio/raw/master/recipes/ds3615xs_41222.json to /home/tc/redpill-load/custom/extensions/_ext_new_rcp.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.virtio for ds3615xs_42218 platform is already up to date[1;0m [1;32m[#] Updating ds3615xs_42218 platforms extensions... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating extensions... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Verifying /home/tc/redpill-load/cache/ds3615xs_42218.pat file... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Unpacking /home/tc/redpill-load/cache/ds3615xs_42218.pat file to /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Verifying /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/zImage file... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Patching /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/zImage to /home/tc/redpill-load/build/1640959506/zImage-patched... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Verifying /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/rd.gz file... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Unpacking /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/rd.gz file to /home/tc/redpill-load/build/1640959506/rd-ds3615xs_42218-unpacked... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Apply patches to /home/tc/redpill-load/build/1640959506/rd-ds3615xs_42218-unpacked... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Patching config files in ramdisk... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Adding OS config patching... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Repacking ramdisk to /home/tc/redpill-load/build/1640959506/rd-patched-ds3615xs_42218.gz... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Bundling extensions... [1;0m[1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Dumping ds3615xs_42218 platform extensions to /home/tc/redpill-load/build/1640959506/custom-initrd/exts... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Packing custom ramdisk layer to /home/tc/redpill-load/build/1640959506/custom.gz... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Generating GRUB config... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Creating loader image at loader.img... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Cleaning up... [1;0m[1;42m[1;30m[OK][1;0m Mounting /dev/sdd1 to localdiskp1 mkdir: cannot create directory 'localdiskp1': File exists mount: localdiskp2: mount point does not exist. /dev/sdd2 localdiskp2 ERROR: Failed to mount correctly all required partitions Entries in Localdisk bootloader : ======================================================================= grep: localdisk/boot/grub/grub.cfg: No such file or directory Loader source : https://github.com/jumkey/redpill-load.git Redpill module source : https://github.com/RedPill-TTG/redpill-lkm.git Extensions : Extensions URL : TOOLKIT_URL : https://sourceforge.net/projects/dsgpl/files/toolkit/DSM7.0/ds.bromolow-7.0.dev.txz/download TOOLKIT_SHA : a5fbc3019ae8787988c2e64191549bfc665a5a9a4cdddb5ee44c10a48ff96cdd SYNOKERNEL_URL : https://sourceforge.net/projects/dsgpl/files/Synology NAS GPL Source/25426branch/bromolow-source/linux-3.10.x.txz/download SYNOKERNEL_SHA : 18aecead760526d652a731121d5b8eae5d6e45087efede0da057413af0b489ed COMPILE_METHOD : toolkit_dev TARGET_PLATFORM : bromolow TARGET_VERSION : 7.0.1 TARGET_REVISION : 42218 REDPILL_LKM_MAKE_TARGET : dev-v7 Checking Internet Access -> OK Checking if a newer version exists on the repo -> Version is current Redpill sources already downloaded, pulling latest Already up to date. Loader sources already downloaded, pulling latest Already up to date. Using static compiled redpill extension Looking for redpill for : ds3615xs_422&>18 Getting file https://raw.githubusercontent.com/pocopico/rp-ext/master/redpill/releases/redpill-3.10.108.tgz Extracting module Got redpill-linux-v3.10.108.ko Starting loader creation Cache directory OK [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating extensions... [1;0m [1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Extension thethorgroup.boot-wait is already installed from https://github.com/jumkey/redpill-load/raw/develop/redpill-boot-wait/rpext-index.json[1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Extension thethorgroup.virtio is already installed from https://github.com/jumkey/redpill-load/raw/develop/redpill-virtio/rpext-index.json[1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating thethorgroup.boot-wait extension... [1;0m [1;32m[#] Downloading remote file https://github.com/jumkey/redpill-load/raw/develop/redpill-boot-wait/rpext-index.json to /home/tc/redpill-load/custom/extensions/_new_ext_index.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.boot-wait index is already up to date[1;0m [1;32m[#] Updating thethorgroup.virtio extension... [1;0m [1;32m[#] Downloading remote file https://github.com/jumkey/redpill-load/raw/develop/redpill-virtio/rpext-index.json to /home/tc/redpill-load/custom/extensions/_new_ext_index.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.virtio index is already up to date[1;0m [1;32m[#] Updating thethorgroup.virtio extension... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating ds3615xs_42218 platforms extensions... [1;0m [1;32m[#] Downloading remote file https://github.com/RedPill-TTG/redpill-boot-wait/raw/master/recipes/universal.json to /home/tc/redpill-load/custom/extensions/_ext_new_rcp.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.boot-wait for ds3615xs_42218 platform is already up to date[1;0m [1;32m[#] Downloading remote file https://github.com/RedPill-TTG/redpill-virtio/raw/master/recipes/ds3615xs_41222.json to /home/tc/redpill-load/custom/extensions/_ext_new_rcp.tmp_json[1;0m ###################################################################################################################### 100.0% ###################################################################################################################### 100.0% [1;32m[#] Extension thethorgroup.virtio for ds3615xs_42218 platform is already up to date[1;0m [1;32m[#] Updating ds3615xs_42218 platforms extensions... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Updating extensions... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Verifying /home/tc/redpill-load/cache/ds3615xs_42218.pat file... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Unpacking /home/tc/redpill-load/cache/ds3615xs_42218.pat file to /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Verifying /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/zImage file... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Patching /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/zImage to /home/tc/redpill-load/build/1640959506/zImage-patched... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Verifying /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/rd.gz file... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Unpacking /home/tc/redpill-load/build/1640959506/pat-ds3615xs_42218-unpacked/rd.gz file to /home/tc/redpill-load/build/1640959506/rd-ds3615xs_42218-unpacked... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Apply patches to /home/tc/redpill-load/build/1640959506/rd-ds3615xs_42218-unpacked... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Patching config files in ramdisk... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Adding OS config patching... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Repacking ramdisk to /home/tc/redpill-load/build/1640959506/rd-patched-ds3615xs_42218.gz... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Bundling extensions... [1;0m[1;32m[#] Checking runtime for required tools... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Dumping ds3615xs_42218 platform extensions to /home/tc/redpill-load/build/1640959506/custom-initrd/exts... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Packing custom ramdisk layer to /home/tc/redpill-load/build/1640959506/custom.gz... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Generating GRUB config... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Creating loader image at loader.img... [1;0m[1;42m[1;30m[OK][1;0m [1;32m[#] Cleaning up... [1;0m[1;42m[1;30m[OK][1;0m Mounting /dev/sdd1 to localdiskp1 mkdir: cannot create directory 'localdiskp1': File exists mount: localdiskp2: mount point does not exist. /dev/sdd2 localdiskp2 ERROR: Failed to mount correctly all required partitions Entries in Localdisk bootloader : ======================================================================= grep: localdisk/boot/grub/grub.cfg: No such file or directory umount: localdiskp2: no mount point specified. umount: localdiskp2: no mount point specified.
  17. i did and i saw that i can use my own jsons. But its not clear to me if i can just use the urls below.. they are the same files? { "unknowno.virtio": "https://raw.githubusercontent.com/jumkey/redpill-load/develop/redpill-virtio/rpext-index.json", "unknowno.boot-wait": "https://raw.githubusercontent.com/pocopico/rp-ext/main/redpill-boot-wait/rpext-index.json" }
  18. nice tool! i got a problem tho.. https://mirrors.llilii.cn this one is dead.. can we just change the url to another source? or do we really need that mirror?
  19. Your Welcome! Now to find out how to add drivers to the kernel configuration etc..
  20. I give up! Will buy another controller! Thanks for your time!
  21. Im at work now so i cant check it.. This output is just when i ssh in to my xpenology box.. im root: root@DiskStation:~# lspci 0000:00:00.0 Class 0600: Device 8086:0c00 (rev 06) 0000:00:01.0 Class 0604: Device 8086:0c01 (rev 06) 0000:00:02.0 Class 0300: Device 8086:0412 (rev 06) 0000:00:03.0 Class 0403: Device 8086:0c0c (rev 06) 0000:00:14.0 Class 0c03: Device 8086:8cb1 0000:00:16.0 Class 0780: Device 8086:8cba 0000:00:19.0 Class 0200: Device 8086:15a1 0000:00:1a.0 Class 0c03: Device 8086:8cad 0000:00:1b.0 Class 0403: Device 8086:8ca0 0000:00:1c.0 Class 0604: Device 8086:8c90 (rev d0) 0000:00:1c.3 Class 0604: Device 8086:244e (rev d0) 0000:00:1c.4 Class 0604: Device 8086:8c98 (rev d0) 0000:00:1d.0 Class 0c03: Device 8086:8ca6 0000:00:1f.0 Class 0601: Device 8086:8cc6 0000:00:1f.2 Class 0106: Device 8086:8c82 0000:00:1f.3 Class 0c05: Device 8086:8ca2 0000:03:00.0 Class 0604: Device 1b21:1080 (rev 04) 0000:05:00.0 Class 0200: Device 8086:10b9 (rev 06) 0001:07:00.0 Class 0000: Device 1b4b:9235 (rev ff) 0001:08:00.0 Class 0000: Device 1b4b:9235 (rev ff) 0001:09:00.0 Class 0000: Device 1b4b:9235 (rev ff) 0001:0a:00.0 Class 0000: Device 1b4b:9235 (rev ff) When i start chroot i get this output: root@DiskStation:/# lspci pcilib: Cannot open /proc/bus/pci 00:00.0 Host bridge: Intel Corporation 4th Gen Core Processor DRAM Controller (rev 06) 00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor PCI Express x16 Controller (rev 06) 00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06) 00:03.0 Audio device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller (rev 06) 00:14.0 USB controller: Intel Corporation 9 Series Chipset Family USB xHCI Controller 00:16.0 Communication controller: Intel Corporation 9 Series Chipset Family ME Interface #1 00:19.0 Ethernet controller: Intel Corporation Ethernet Connection (2) I218-V 00:1a.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #2 00:1b.0 Audio device: Intel Corporation 9 Series Chipset Family HD Audio Controller 00:1c.0 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 1 (rev d0) 00:1c.3 PCI bridge: Intel Corporation 82801 PCI Bridge (rev d0) 00:1c.4 PCI bridge: Intel Corporation 9 Series Chipset Family PCI Express Root Port 5 (rev d0) 00:1d.0 USB controller: Intel Corporation 9 Series Chipset Family USB EHCI Controller #1 00:1f.0 ISA bridge: Intel Corporation 9 Series Chipset Family H97 Controller 00:1f.2 SATA controller: Intel Corporation 9 Series Chipset Family SATA Controller [AHCI Mode] 00:1f.3 SMBus: Intel Corporation 9 Series Chipset Family SMBus Controller 03:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 04) 05:00.0 Ethernet controller: Intel Corporation 82572EI Gigabit Ethernet Controller (Copper) (rev 06) here is my dmesg: https://justpaste.it/17bn4
  22. @bmwfreak8 Its not gonna work, the hp machines are just crap!! Just buy a hd bay 2.5 inch and test it out.. No need for extra power chord and its about 8 bucks. Put it an old harddisk and boot from it. When it doesn't work just return the bay.
  23. so, i made a mistake! the achi.ko is working fine! But the controller is still not detected
  24. yes, you need an scsi controller or it wont work!
×
×
  • Create New...