Advertisement
s243a

initrd/init Ln#1025 to 1040

Apr 15th, 2018
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.83 KB | None | 0 0
  1. #have basic system, now try to add optional stuff # Line 1025 to 1040 of initrd/init - https://www.pearltrees.com/s243a/initrd-init/id19535893/item223681974
  2. find_onepupdrv "$F_PART" "$F_BP_FN" "$F_DEF_FN" "f"
  3. [ "$ONE_FN" ] && FDRV="$ONE_PART,$ONE_FS,$ONE_FN"
  4. [ "$FDRV" ] && { LOADMSG="fdrv"; setup_onepupdrv "$FDRV" "f"; }
  5.  
  6. find_onepupdrv "$Z_PART" "$Z_BP_FN" "$Z_DEF_FN" "z"
  7. [ "$ONE_FN" ] && ZDRV="$ONE_PART,$ONE_FS,$ONE_FN"
  8. [ "$ZDRV" ] && { LOADMSG="zdrv"; setup_onepupdrv "$ZDRV" "z"; }
  9.  
  10. find_onepupdrv "$Y_PART" "$Y_BP_FN" "$Y_DEF_FN" "y"
  11. [ "$ONE_FN" ] && YDRV="$ONE_PART,$ONE_FS,$ONE_FN"
  12. [ "$YDRV" ] && { LOADMSG="ydrv"; setup_onepupdrv "$YDRV" "y" "p"; }
  13.  
  14. find_onepupdrv "$A_PART" "$A_BP_FN" "$A_DEF_FN" "a"
  15. [ "$ONE_FN" ] && ADRV="$ONE_PART,$ONE_FS,$ONE_FN"
  16. [ "$ADRV" ] && { LOADMSG="adrv"; setup_onepupdrv "$ADRV" "a" "p"; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement